linting
This commit is contained in:
@ -1,10 +1,6 @@
|
||||
import { TextRun } from "../../../docx/run/text-run";
|
||||
import { assert } from "chai";
|
||||
|
||||
function jsonify(obj: Object) {
|
||||
let stringifiedJson = JSON.stringify(obj);
|
||||
return JSON.parse(stringifiedJson);
|
||||
}
|
||||
import { TextRun } from "../../../docx/run/text-run";
|
||||
import { Utility } from "../../utility";
|
||||
|
||||
describe("TextRun", () => {
|
||||
let run: TextRun;
|
||||
@ -13,8 +9,8 @@ describe("TextRun", () => {
|
||||
|
||||
it("should add text into run", () => {
|
||||
run = new TextRun("test");
|
||||
let newJson = jsonify(run);
|
||||
const newJson = Utility.jsonify(run);
|
||||
assert.equal(newJson.root[1].root, "test");
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user