added run tests

This commit is contained in:
Dolan Miu
2016-07-12 08:46:26 +01:00
parent ed4f7464e0
commit 54b2c16d7a
2 changed files with 67 additions and 10 deletions

View File

@ -10,7 +10,7 @@ function jsonify(obj: Object) {
return JSON.parse(stringifiedJson);
}
describe("Run", () => {
describe.only("Run", () => {
let run: Run;
beforeEach(() => {
@ -40,17 +40,54 @@ describe("Run", () => {
assert.equal(newJson.root[0].root[0].rootKey, "w:u");
});
});
});
describe("TextRun", () => {
let run: TextRun;
describe("#constructor()", () => {
it("should add text into run", () => {
run = new TextRun("test");
describe("#smallCaps()", () => {
it("it should add smallCaps to the properties", () => {
run.smallCaps();
let newJson = jsonify(run);
assert.equal(newJson.root[1].root, "test");
assert.equal(newJson.root[0].root[0].rootKey, "w:smallCaps");
});
});
describe("#caps()", () => {
it("it should add caps to the properties", () => {
run.allCaps();
let newJson = jsonify(run);
assert.equal(newJson.root[0].root[0].rootKey, "w:caps");
});
});
describe("#strike()", () => {
it("it should add strike to the properties", () => {
run.strike();
let newJson = jsonify(run);
assert.equal(newJson.root[0].root[0].rootKey, "w:strike");
});
});
describe("#doubleStrike()", () => {
it("it should add caps to the properties", () => {
run.doubleStrike();
let newJson = jsonify(run);
assert.equal(newJson.root[0].root[0].rootKey, "w:dstrike");
});
});
describe("#break()", () => {
it("it should add break to the run", () => {
let run = new Run();
run.break();
let newJson = jsonify(run);
assert.equal(newJson.root[1].rootKey, "w:br");
});
});
describe("#tab()", () => {
it("it should add break to the run", () => {
let run = new Run();
run.tab();
let newJson = jsonify(run);
assert.equal(newJson.root[1].rootKey, "w:tab");
});
});
});

View File

@ -0,0 +1,20 @@
import {TextRun} from "../../../docx/run/text-run";
import {assert} from "chai";
function jsonify(obj: Object) {
let stringifiedJson = JSON.stringify(obj);
return JSON.parse(stringifiedJson);
}
describe("TextRun", () => {
let run: TextRun;
describe("#constructor()", () => {
it("should add text into run", () => {
run = new TextRun("test");
let newJson = jsonify(run);
assert.equal(newJson.root[1].root, "test");
});
});
});