#2733 Add error if level exceeds 9

This commit is contained in:
Dolan
2021-12-18 15:42:35 +00:00
parent ed8b4180f8
commit 6d3ebf90c1
7 changed files with 92 additions and 9 deletions

View File

@ -5,21 +5,17 @@ import { Formatter } from "export/formatter";
import { NumberProperties } from "./unordered-list";
describe("NumberProperties", () => {
let numberProperties: NumberProperties;
beforeEach(() => {
numberProperties = new NumberProperties(5, 10);
});
describe("#constructor()", () => {
it("should create a Number Properties with correct root key", () => {
const numberProperties = new NumberProperties(5, 9);
const tree = new Formatter().format(numberProperties);
expect(tree).to.deep.equal({
"w:numPr": [
{
"w:ilvl": {
_attr: {
"w:val": 10,
"w:val": 9,
},
},
},
@ -33,5 +29,9 @@ describe("NumberProperties", () => {
],
});
});
it("should throw an error if level exceeds 9", () => {
expect(() => new NumberProperties(5, 10)).to.throw();
});
});
});