16 lines
351 B
TypeScript
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;
|
|
});
|
|
});
|
|
});
|