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

21 lines
456 B
TypeScript
Raw Normal View History

2016-03-31 23:01:20 +01:00
/// <reference path="../typings/mocha/mocha.d.ts" />
/// <reference path="../typings/chai/chai.d.ts" />
import {Body} from "../docx/document/body";
import {assert} from "chai";
function jsonify(obj: Object) {
var stringifiedJson = JSON.stringify(obj);
return JSON.parse(stringifiedJson);
}
describe('Body', () => {
var body: Body;
beforeEach(() => {
body = new Body();
});
describe('#constructor()', () => {
});
});