From d2bbe83e086888797dafd2921c99e3b050632f04 Mon Sep 17 00:00:00 2001 From: Ashish Jain Date: Mon, 12 Aug 2024 13:59:34 +0200 Subject: [PATCH] Removed the un-necessary test --- cypress/integration/other/flowchart-elk.spec.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 cypress/integration/other/flowchart-elk.spec.js diff --git a/cypress/integration/other/flowchart-elk.spec.js b/cypress/integration/other/flowchart-elk.spec.js deleted file mode 100644 index 22a6efc0f..000000000 --- a/cypress/integration/other/flowchart-elk.spec.js +++ /dev/null @@ -1,14 +0,0 @@ -import { urlSnapshotTest, openURLAndVerifyRendering } from '../../helpers/util.ts'; - -describe('Flowchart elk', () => { - it('should use dagre as fallback', () => { - urlSnapshotTest('http://localhost:9000/flow-elk.html', { - name: 'flow-elk fallback to dagre', - }); - }); - it('should allow overriding with external package', () => { - urlSnapshotTest('http://localhost:9000/flow-elk.html?elk=true', { - name: 'flow-elk overriding dagre with elk', - }); - }); -});