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

19 lines
301 B
TypeScript

import { assert } from "chai";
function jsonify(obj: Object) {
let stringifiedJson = JSON.stringify(obj);
return JSON.parse(stringifiedJson);
}
describe("", () => {
beforeEach(() => {
});
describe("#methodName()", () => {
it("should ", () => {
});
});
});