2020-10-10 13:41:26 +01:00
|
|
|
import { expect } from "chai";
|
|
|
|
|
2022-06-26 23:26:42 +01:00
|
|
|
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"],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|