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

19 lines
301 B
TypeScript
Raw Normal View History

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