-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunittests.js
29 lines (21 loc) · 889 Bytes
/
unittests.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */
/*global define, describe, it, xit, expect, beforeEach, afterEach, waitsFor, runs, $, brackets, waitsForDone */
define(function (require, exports, module) {
"use strict";
// Modules from the SpecRunner window
var SpecRunnerUtils = brackets.getModule("spec/SpecRunnerUtils"),
XXXX_Extension = require("main");
describe("XXXXExtension", function () {
beforeEach(function () {
// Stuffs to do before tests
});
afterEach(function () {
// Stuffs to do after tests
});
describe("Do x", function () {
it("should do x", function () {
//expect(0)).not.toBe(-1);
});
});
});
});