added Spacing for paragraphs and ParagraphStyle

This commit is contained in:
felipe
2017-03-09 12:12:33 +01:00
parent 449d1bc2c3
commit 20ec9b679e
6 changed files with 93 additions and 0 deletions

View File

@ -171,6 +171,22 @@ describe("ParagraphStyle", () => {
],
});
});
it("#spacing", () => {
const style = new ParagraphStyle("myStyleId")
.spacing({before: 50, after: 150});
const tree = new Formatter().format(style);
expect(tree).to.deep.equal({
"w:style": [
{_attr: {"w:type": "paragraph", "w:styleId": "myStyleId"}},
{"w:pPr": [
{_attr: {}},
{"w:spacing": [{_attr: {"w:before": 50, "w:after": 150}}]},
]},
{"w:rPr": []},
],
});
});
});
describe("formatting methods: run properties", () => {