#2733 Add error if level exceeds 9
This commit is contained in:
@ -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();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user