2023-06-05 00:33:43 +01:00
|
|
|
import { describe, expect, it } from "vitest";
|
2021-03-01 23:35:52 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|