Files
docx-js/src/file/footnotes-wrapper.spec.ts

15 lines
362 B
TypeScript
Raw Normal View History

2021-03-01 23:35:52 +00:00
import { expect } from "chai";
import { FootnotesWrapper } from "./footnotes-wrapper";
describe("FootnotesWrapper", () => {
describe("#constructor", () => {
it("should create", () => {
const file = new FootnotesWrapper();
expect(file.View).to.be.ok;
expect(file.Relationships).to.be.ok;
});
});
});