rearranged test locations
This commit is contained in:
24
ts/tests/numberingTest.ts
Normal file
24
ts/tests/numberingTest.ts
Normal file
@ -0,0 +1,24 @@
|
||||
/// <reference path="../typings/mocha/mocha.d.ts" />
|
||||
/// <reference path="../typings/chai/chai.d.ts" />
|
||||
|
||||
import {assert} from "chai";
|
||||
import {Numbering} from "../numbering";
|
||||
|
||||
function jsonify(obj: Object) {
|
||||
let stringifiedJson = JSON.stringify(obj);
|
||||
return JSON.parse(stringifiedJson);
|
||||
}
|
||||
|
||||
describe("", () => {
|
||||
|
||||
let numbering = new Numbering;
|
||||
beforeEach(() => {
|
||||
numbering = new Numbering();
|
||||
});
|
||||
|
||||
describe("#methodName()", () => {
|
||||
it("should ", () => {
|
||||
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user