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

22 lines
412 B
TypeScript
Raw Normal View History

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