Files
docx-js/ts/tests/numberingTest.ts

21 lines
414 B
TypeScript
Raw Normal View History

import { assert } from "chai";
import { Numbering } from "../numbering";
2016-07-01 22:09:55 +01:00
function jsonify(obj: Object) {
let stringifiedJson = JSON.stringify(obj);
return JSON.parse(stringifiedJson);
}
describe("", () => {
2016-07-01 22:09:55 +01:00
let numbering = new Numbering;
beforeEach(() => {
numbering = new Numbering();
});
describe("#methodName()", () => {
it("should ", () => {
});
});
});