/// /// import {Body} from "../docx/document/body"; import {assert} from "chai"; function jsonify(obj: Object) { var stringifiedJson = JSON.stringify(obj); return JSON.parse(stringifiedJson); } describe.only('Body', () => { var body: Body; beforeEach(() => { body = new Body(); }); describe('#constructor()', () => { it("should create the correct xml components", () => { console.log(body); }); }); });