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

19 lines
293 B
TypeScript
Raw Normal View History

2017-03-10 15:16:03 +01:00
/* tslint:disable */
import { assert } from "chai";
2017-03-09 22:56:08 +00:00
import { Utility } from "./utility";
2017-03-10 15:16:03 +01:00
/* tslint:enable */
2016-07-01 22:09:55 +01:00
describe("", () => {
beforeEach(() => {
2017-03-09 22:56:08 +00:00
// TODO
2016-07-01 22:09:55 +01:00
});
describe("#methodName()", () => {
it("should ", () => {
2017-03-09 22:56:08 +00:00
// TODO
2016-07-01 22:09:55 +01:00
});
});
2017-03-09 22:56:08 +00:00
});