comment out skipped test

This commit is contained in:
Sidharth Vinod 2023-12-10 22:38:50 +05:30
parent 22f83f1614
commit d91934b219
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD

View File

@ -1,4 +1,4 @@
import { imgSnapshotTest, renderGraph } from '../../helpers/util';
import { imgSnapshotTest } from '../../helpers/util';
describe('Katex', () => {
it('1: should render a complex Katex flowchart no htmlLabels', () => {
@ -26,11 +26,11 @@ describe('Katex', () => {
);
});
// TODO: changes made to develop between Feb 13 - Feb 23 cause this test to no longer function
it.skip('4: should render an error box originating from Katex', () => {
imgSnapshotTest(
`graph LR
A["$$\\shouldbeerror$$"]`,
{ fontFamily: 'courier' }
);
});
// it.skip('4: should render an error box originating from Katex', () => {
// imgSnapshotTest(
// `graph LR
// A["$$\\shouldBeError$$"]`,
// { fontFamily: 'courier' }
// );
// });
});