Files
docx-js/src/file/paragraph/math/script/pre-sub-super-script/math-pre-sub-super-script-function.spec.ts

61 lines
1.9 KiB
TypeScript
Raw Normal View History

2020-10-10 13:41:26 +01:00
import { expect } from "chai";
import { Formatter } from "@export/formatter";
2020-10-10 13:41:26 +01:00
import { MathRun } from "../../math-run";
import { MathPreSubSuperScript } from "./math-pre-sub-super-script-function";
describe("MathPreSubScript", () => {
describe("#constructor()", () => {
it("should create a MathPreSubScript with correct root key", () => {
const mathPreSubScript = new MathPreSubSuperScript({
2020-10-13 02:06:27 +01:00
children: [new MathRun("e")],
subScript: [new MathRun("2")],
superScript: [new MathRun("5")],
2020-10-10 13:41:26 +01:00
});
const tree = new Formatter().format(mathPreSubScript);
expect(tree).to.deep.equal({
"m:sPre": [
{
"m:sPrePr": {},
},
{
"m:e": [
{
"m:r": [
{
"m:t": ["e"],
},
],
},
],
},
{
"m:sub": [
{
"m:r": [
{
"m:t": ["2"],
},
],
},
],
},
{
"m:sup": [
{
"m:r": [
{
"m:t": ["5"],
},
],
},
],
},
],
});
});
});
});