test: add mtext use case for normal, bold and italic

This commit is contained in:
Alexandre Nunes 2020-09-17 11:17:20 -03:00
parent 2535444444
commit b003619f6a
1 changed files with 60 additions and 0 deletions

View File

@ -1343,4 +1343,64 @@ describe('#convert', () => {
expect(result).toBe('\\left(x + y\\right)_{0}^{1}'); expect(result).toBe('\\left(x + y\\right)_{0}^{1}');
}); });
}); });
describe('given math string with mtext', () => {
describe('mtext without any attribute', () => {
it('wrap its content inside text command', () => {
const mathml = `
<root>
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mtext> Theorem of Pythagoras </mtext>
</math>
</root>
`;
const result = MathMLToLaTeX.convert(mathml);
expect(result).toBe('\\text{ Theorem of Pythagoras }');
});
});
describe('mtext with mathvariant attribute setted as "normal"', () => {
const mathml = `
<root>
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mtext mathvariant="normal"> Theorem of Pythagoras </mtext>
</math>
</root>
`;
const result = MathMLToLaTeX.convert(mathml);
expect(result).toBe('\\text{ Theorem of Pythagoras }');
});
describe('mtext with mathvariant attribute setted as "normal"', () => {
const mathml = `
<root>
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mtext mathvariant="bold"> Theorem of Pythagoras </mtext>
</math>
</root>
`;
const result = MathMLToLaTeX.convert(mathml);
expect(result).toBe('\\textbf{ Theorem of Pythagoras }');
});
describe('mtext with mathvariant attribute setted as "normal"', () => {
const mathml = `
<root>
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mtext mathvariant="italic"> Theorem of Pythagoras </mtext>
</math>
</root>
`;
const result = MathMLToLaTeX.convert(mathml);
expect(result).toBe('\\textit{ Theorem of Pythagoras }');
});
});
}); });