From 1a2d752ca4da0962c99ef48f9b18a69eee59ee42 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Sat, 2 Aug 2025 19:29:46 +0530 Subject: [PATCH] test: Update diagram names --- tests/actions.spec.ts | 2 +- tests/docMap.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/actions.spec.ts b/tests/actions.spec.ts index 95335481..bfa6adeb 100644 --- a/tests/actions.spec.ts +++ b/tests/actions.spec.ts @@ -26,7 +26,7 @@ test.describe('Check actions', () => { // Verify downloaded file is different for different diagrams await editPage.toggleSampleDiagrams(); - await editPage.loadSampleDiagram('ER'); + await editPage.loadSampleDiagram('Entity Relationship'); const secondPngSize = await editPage.checkAndDownloadPNG(81_000); const secondSvgSize = await editPage.downloadSVG(11_000); diff --git a/tests/docMap.spec.ts b/tests/docMap.spec.ts index 649ac56a..e579a668 100644 --- a/tests/docMap.spec.ts +++ b/tests/docMap.spec.ts @@ -12,7 +12,7 @@ test.describe('Editor docs tests', () => { test('Test to see if the correct URL loads when changing from one diagram to other', async ({ editPage }) => { - await editPage.loadSampleDiagram('Flow'); + await editPage.loadSampleDiagram('Flowchart'); await editPage.checkDocURL(/syntax\/flowchart\.html/); await editPage.setEditorMode('Config'); await editPage.checkDocURL(/syntax\/flowchart\.html#configuration/);