51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import { expect } from "chai";
|
|
import * as sinon from "sinon";
|
|
|
|
import { HeaderWrapper } from "./header-wrapper";
|
|
import { Media } from "./media";
|
|
import { Paragraph } from "./paragraph";
|
|
import { Table, TableCell, TableRow } from "./table";
|
|
|
|
describe("HeaderWrapper", () => {
|
|
describe("#add", () => {
|
|
it("should call the underlying header's addChildElement for Paragraph", () => {
|
|
const wrapper = new HeaderWrapper(new Media(), 1);
|
|
const spy = sinon.spy(wrapper.Header, "add");
|
|
wrapper.add(new Paragraph({}));
|
|
|
|
expect(spy.called).to.equal(true);
|
|
});
|
|
|
|
it("should call the underlying header's addChildElement for Table", () => {
|
|
const wrapper = new HeaderWrapper(new Media(), 1);
|
|
const spy = sinon.spy(wrapper.Header, "add");
|
|
wrapper.add(
|
|
new Table({
|
|
rows: [
|
|
new TableRow({
|
|
children: [
|
|
new TableCell({
|
|
children: [new Paragraph("hello")],
|
|
}),
|
|
],
|
|
}),
|
|
],
|
|
}),
|
|
);
|
|
|
|
expect(spy.called).to.equal(true);
|
|
});
|
|
});
|
|
|
|
describe("#addChildElement", () => {
|
|
it("should call the underlying header's addChildElement", () => {
|
|
const file = new HeaderWrapper(new Media(), 1);
|
|
const spy = sinon.spy(file.Header, "addChildElement");
|
|
// tslint:disable-next-line:no-any
|
|
file.addChildElement({} as any);
|
|
|
|
expect(spy.called).to.equal(true);
|
|
});
|
|
});
|
|
});
|