Files
docx-js/src/file/footnotes-wrapper.spec.ts
2022-08-31 08:59:27 +01:00

15 lines
362 B
TypeScript

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;
});
});
});