#627 Add footnotes relationships
This commit is contained in:
16
src/file/footnotes-wrapper.spec.ts
Normal file
16
src/file/footnotes-wrapper.spec.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { expect } from "chai";
|
||||
|
||||
import { FootnotesWrapper } from "./footnotes-wrapper";
|
||||
|
||||
describe("FootnotesWrapper", () => {
|
||||
describe("#constructor", () => {
|
||||
it("should create", () => {
|
||||
const file = new FootnotesWrapper();
|
||||
|
||||
// tslint:disable-next-line: no-unused-expression
|
||||
expect(file.View).to.be.ok;
|
||||
// tslint:disable-next-line: no-unused-expression
|
||||
expect(file.Relationships).to.be.ok;
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user