From e46fd145b261ba15d1534a13940908d98996eb85 Mon Sep 17 00:00:00 2001 From: Alois Klink Date: Mon, 12 May 2025 11:56:26 +0200 Subject: [PATCH] test(e2e): skip `arrowMarkerAbsolute: 'false'` This feature looks like it's been broken for a long time, but something about the Cypress environment was rewriting the URL to be relative, causing this test to incorrectly pass. --- cypress/integration/other/configuration.spec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cypress/integration/other/configuration.spec.js b/cypress/integration/other/configuration.spec.js index ad6b21e29..569ce4eff 100644 --- a/cypress/integration/other/configuration.spec.js +++ b/cypress/integration/other/configuration.spec.js @@ -69,7 +69,9 @@ describe('Configuration', () => { .and('include', 'url(#'); }); }); - it('should handle arrowMarkerAbsolute explicitly set to "false" as false', () => { + // This has been broken for a long time, but something about the Cypress environment was + // rewriting the URL to be relative, causing the test to incorrectly pass. + it.skip('should handle arrowMarkerAbsolute explicitly set to "false" as false', () => { renderGraph( `graph TD A[Christmas] -->|Get money| B(Go shopping)