15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
import { expect } from "chai";
|
|
|
|
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;
|
|
});
|
|
});
|
|
});
|