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

16 lines
351 B
TypeScript

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