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

16 lines
335 B
TypeScript

import { expect } from "chai";
import { Document } from "./index";
describe("Index", () => {
describe("Document", () => {
it("should instantiate the Document", () => {
expect(
new Document({
sections: [],
}),
).to.be.ok;
});
});
});