Files
docx-js/src/file/document-wrapper.spec.ts
2023-06-05 00:33:43 +01:00

15 lines
392 B
TypeScript

import { describe, expect, it } from "vitest";
import { DocumentWrapper } from "./document-wrapper";
describe("DocumentWrapper", () => {
describe("#constructor", () => {
it("should create", () => {
const file = new DocumentWrapper({ background: {} });
expect(file.View).to.be.ok;
expect(file.Relationships).to.be.ok;
});
});
});