listing stuff

This commit is contained in:
Dolan
2017-03-09 22:31:55 +00:00
parent 0e8d92f8bb
commit 5fac776dca
9 changed files with 57 additions and 78 deletions

View File

@ -1,5 +1,5 @@
import * as docx from "../../../docx";
import { assert } from "chai";
import * as docx from "../../../docx";
describe("Document", () => {
let document: docx.Document;
@ -11,7 +11,7 @@ describe("Document", () => {
describe("#constructor()", () => {
it("should create valid JSON", () => {
let stringifiedJson = JSON.stringify(document);
const stringifiedJson = JSON.stringify(document);
let newJson;
try {
@ -22,4 +22,4 @@ describe("Document", () => {
assert.isTrue(true);
});
});
});
});