2023-06-05 00:33:43 +01:00
|
|
|
import { describe, expect, it } from "vitest";
|
2017-09-17 00:00:41 +01:00
|
|
|
|
2022-06-26 23:26:42 +01:00
|
|
|
import { Formatter } from "@export/formatter";
|
2018-10-26 01:04:07 +01:00
|
|
|
|
2021-05-24 11:28:10 +03:00
|
|
|
import { Spacing } from "./spacing";
|
2017-03-09 12:12:33 +01:00
|
|
|
|
|
|
|
describe("Spacing", () => {
|
|
|
|
describe("#constructor", () => {
|
|
|
|
it("should set the properties given", () => {
|
2018-01-23 01:33:12 +00:00
|
|
|
const spacing = new Spacing({ before: 100, after: 120, line: 150 });
|
2017-03-09 12:12:33 +01:00
|
|
|
const tree = new Formatter().format(spacing);
|
|
|
|
expect(tree).to.deep.equal({
|
2019-04-09 05:27:18 -04:00
|
|
|
"w:spacing": { _attr: { "w:after": 120, "w:before": 100, "w:line": 150 } },
|
2017-03-09 12:12:33 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should only set the given properties", () => {
|
2018-01-23 01:33:12 +00:00
|
|
|
const spacing = new Spacing({ before: 100 });
|
2017-03-09 12:12:33 +01:00
|
|
|
const tree = new Formatter().format(spacing);
|
|
|
|
expect(tree).to.deep.equal({
|
2019-04-09 05:27:18 -04:00
|
|
|
"w:spacing": { _attr: { "w:before": 100 } },
|
2017-03-09 12:12:33 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|