Move tests to respective folders as .spec

This is to keep to standards
This commit is contained in:
Dolan
2017-09-17 00:00:41 +01:00
parent 5ae02c3342
commit 72e89cfc3c
32 changed files with 103 additions and 72 deletions

19
ts/docx/run/break.spec.ts Normal file
View File

@ -0,0 +1,19 @@
import { assert } from "chai";
import { Utility } from "../../tests/utility";
import { Break } from "./break";
describe("Break", () => {
let currentBreak: Break;
beforeEach(() => {
currentBreak = new Break();
});
describe("#constructor()", () => {
it("should create a Break with correct root key", () => {
const newJson = Utility.jsonify(currentBreak);
assert.equal(newJson.rootKey, "w:br");
});
});
});