23 lines
651 B
TypeScript
23 lines
651 B
TypeScript
![]() |
import { expect } from "chai";
|
||
|
|
||
|
import { Formatter } from "export/formatter";
|
||
|
|
||
|
import { MathLimitLocation } from "./math-limit-location";
|
||
|
|
||
|
describe("MathLimitLocation", () => {
|
||
|
describe("#constructor()", () => {
|
||
|
it("should create a MathLimitLocation with correct root key", () => {
|
||
|
const mathLimitLocation = new MathLimitLocation();
|
||
|
|
||
|
const tree = new Formatter().format(mathLimitLocation);
|
||
|
expect(tree).to.deep.equal({
|
||
|
"m:limLoc": {
|
||
|
_attr: {
|
||
|
"m:val": "undOvr",
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|