Files
docx-js/src/file/document/body/body.spec.ts

51 lines
1.6 KiB
TypeScript
Raw Normal View History

import { expect } from "chai";
2018-10-26 01:04:07 +01:00
import { Formatter } from "export/formatter";
import { Body } from "./body";
2016-03-31 23:01:20 +01:00
2016-04-03 05:24:56 +01:00
describe("Body", () => {
let body: Body;
2016-03-31 23:01:20 +01:00
beforeEach(() => {
body = new Body();
2016-03-31 23:01:20 +01:00
});
2018-11-01 02:22:32 +00:00
describe("#addSection", () => {
it("should add section with default parameters", () => {
body.addSection({
width: 10000,
height: 10000,
});
const tree = new Formatter().format(body);
expect(tree).to.deep.equal({
"w:body": [
{
"w:sectPr": [
{ "w:pgSz": { _attr: { "w:w": 10000, "w:h": 10000, "w:orient": "portrait" } } },
2018-11-01 02:22:32 +00:00
{
"w:pgMar": {
_attr: {
"w:top": 1440,
"w:right": 1440,
"w:bottom": 1440,
"w:left": 1440,
"w:header": 708,
"w:footer": 708,
"w:gutter": 0,
"w:mirrorMargins": false,
2018-11-01 02:22:32 +00:00
},
},
2018-11-01 02:22:32 +00:00
},
2019-06-21 01:22:27 +05:30
{ "w:cols": { _attr: { "w:space": 708, "w:num": 1 } } },
{ "w:docGrid": { _attr: { "w:linePitch": 360 } } },
2018-11-01 02:22:32 +00:00
],
},
],
});
});
});
2017-03-09 22:31:55 +00:00
});