added the remaining classes required

This commit is contained in:
Dolan Miu
2017-03-13 00:02:56 +00:00
parent 34ce662f70
commit fa44acca1b
8 changed files with 58 additions and 5 deletions

View File

@ -1,4 +1,4 @@
import { assert, expect } from "chai";
import { assert } from "chai";
import { Drawing } from "../../../../docx/run/run-components/drawing";
import { Utility } from "../../../utility";
@ -13,6 +13,7 @@ describe.only("Drawing", () => {
it("should create a Drawing with correct root key", () => {
const newJson = Utility.jsonify(currentBreak);
assert.equal(newJson.rootKey, "w:drawing");
console.log(JSON.stringify(newJson, null, 2));
});
});
});