12
src/index.spec.ts
Normal file
12
src/index.spec.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { expect } from "chai";
|
||||
|
||||
import { Document } from "./index";
|
||||
|
||||
describe("Index", () => {
|
||||
describe("Document", () => {
|
||||
it("should instantiate the Document", () => {
|
||||
// tslint:disable-next-line: no-unused-expression
|
||||
expect(new Document()).to.be.ok;
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user