Files
docx-js/ts/tests/numberingTest.ts
2017-03-07 22:15:53 +00:00

21 lines
414 B
TypeScript

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 ", () => {
});
});
});