From d91934b21963b45a672eaacbc473fe3b2c467372 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Sun, 10 Dec 2023 22:38:50 +0530 Subject: [PATCH] comment out skipped test --- cypress/integration/rendering/katex.spec.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/cypress/integration/rendering/katex.spec.js b/cypress/integration/rendering/katex.spec.js index c3b390ef0..fb1d13392 100644 --- a/cypress/integration/rendering/katex.spec.js +++ b/cypress/integration/rendering/katex.spec.js @@ -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' } + // ); + // }); });