15 lines
376 B
TypeScript
15 lines
376 B
TypeScript
import { expect } from "chai";
|
|
|
|
import { DocumentWrapper } from "./document-wrapper";
|
|
|
|
describe("DocumentWrapper", () => {
|
|
describe("#constructor", () => {
|
|
it("should create", () => {
|
|
const file = new DocumentWrapper({ background: {} });
|
|
|
|
expect(file.View).to.be.ok;
|
|
expect(file.Relationships).to.be.ok;
|
|
});
|
|
});
|
|
});
|