diff --git a/tests/dendrogram.spec.ts b/tests/dendrogram.spec.ts index 0d8f0daf2..90415f9e4 100644 --- a/tests/dendrogram.spec.ts +++ b/tests/dendrogram.spec.ts @@ -1,6 +1,10 @@ import { test } from '@playwright/test'; import { it } from './util'; +test.beforeEach(async ({}, testInfo) => { + testInfo.snapshotSuffix = ''; +}); + test('use Vertical as direction', async ({ page }) => { await it(page, '/Dendrogram?direction=vertical&animation=false'); }); diff --git a/tests/dendrogram.spec.ts-snapshots/Compact-Horizontal-Dendrogram-1-chromium-darwin.png b/tests/dendrogram.spec.ts-snapshots/Compact-Horizontal-Dendrogram-1-chromium.png similarity index 100% rename from tests/dendrogram.spec.ts-snapshots/Compact-Horizontal-Dendrogram-1-chromium-darwin.png rename to tests/dendrogram.spec.ts-snapshots/Compact-Horizontal-Dendrogram-1-chromium.png diff --git a/tests/dendrogram.spec.ts-snapshots/Compact-Radial-Dendrogram-1-chromium-darwin.png b/tests/dendrogram.spec.ts-snapshots/Compact-Radial-Dendrogram-1-chromium.png similarity index 100% rename from tests/dendrogram.spec.ts-snapshots/Compact-Radial-Dendrogram-1-chromium-darwin.png rename to tests/dendrogram.spec.ts-snapshots/Compact-Radial-Dendrogram-1-chromium.png diff --git a/tests/dendrogram.spec.ts-snapshots/Compact-Vertical-Dendrogram-1-chromium-darwin.png b/tests/dendrogram.spec.ts-snapshots/Compact-Vertical-Dendrogram-1-chromium.png similarity index 100% rename from tests/dendrogram.spec.ts-snapshots/Compact-Vertical-Dendrogram-1-chromium-darwin.png rename to tests/dendrogram.spec.ts-snapshots/Compact-Vertical-Dendrogram-1-chromium.png diff --git a/tests/dendrogram.spec.ts-snapshots/use-Horizontal-as-direction-1-chromium-darwin.png b/tests/dendrogram.spec.ts-snapshots/use-Horizontal-as-direction-1-chromium.png similarity index 100% rename from tests/dendrogram.spec.ts-snapshots/use-Horizontal-as-direction-1-chromium-darwin.png rename to tests/dendrogram.spec.ts-snapshots/use-Horizontal-as-direction-1-chromium.png diff --git a/tests/dendrogram.spec.ts-snapshots/use-Radial-as-direction-1-chromium-darwin.png b/tests/dendrogram.spec.ts-snapshots/use-Radial-as-direction-1-chromium.png similarity index 100% rename from tests/dendrogram.spec.ts-snapshots/use-Radial-as-direction-1-chromium-darwin.png rename to tests/dendrogram.spec.ts-snapshots/use-Radial-as-direction-1-chromium.png diff --git a/tests/dendrogram.spec.ts-snapshots/use-Vertical-as-direction-1-chromium-darwin.png b/tests/dendrogram.spec.ts-snapshots/use-Vertical-as-direction-1-chromium.png similarity index 100% rename from tests/dendrogram.spec.ts-snapshots/use-Vertical-as-direction-1-chromium-darwin.png rename to tests/dendrogram.spec.ts-snapshots/use-Vertical-as-direction-1-chromium.png diff --git a/tests/fishbone.spec.ts b/tests/fishbone.spec.ts index bf138a910..c60673a49 100644 --- a/tests/fishbone.spec.ts +++ b/tests/fishbone.spec.ts @@ -1,6 +1,10 @@ import { test } from '@playwright/test'; import { it } from './util'; +test.beforeEach(async ({}, testInfo) => { + testInfo.snapshotSuffix = ''; +}); + test('use Decision as type', async ({ page }) => { await it(page, '/Fishbone?type=decision'); }); diff --git a/tests/fishbone.spec.ts-snapshots/use-Cause-as-type-1-chromium-darwin.png b/tests/fishbone.spec.ts-snapshots/use-Cause-as-type-1-chromium.png similarity index 100% rename from tests/fishbone.spec.ts-snapshots/use-Cause-as-type-1-chromium-darwin.png rename to tests/fishbone.spec.ts-snapshots/use-Cause-as-type-1-chromium.png diff --git a/tests/fishbone.spec.ts-snapshots/use-Decision-as-type-1-chromium-darwin.png b/tests/fishbone.spec.ts-snapshots/use-Decision-as-type-1-chromium.png similarity index 100% rename from tests/fishbone.spec.ts-snapshots/use-Decision-as-type-1-chromium-darwin.png rename to tests/fishbone.spec.ts-snapshots/use-Decision-as-type-1-chromium.png diff --git a/tests/flow-direction-graph.spec.ts b/tests/flow-direction-graph.spec.ts index 56640e079..3af667956 100644 --- a/tests/flow-direction-graph.spec.ts +++ b/tests/flow-direction-graph.spec.ts @@ -1,6 +1,10 @@ import { test } from '@playwright/test'; import { it } from './util'; +test.beforeEach(async ({}, testInfo) => { + testInfo.snapshotSuffix = ''; +}); + test('default flow direction graph', async ({ page }) => { await it(page, '/UserFlowDirectionDefault?animation=false'); }); diff --git a/tests/flow-direction-graph.spec.ts-snapshots/default-flow-direction-graph-1-chromium-darwin.png b/tests/flow-direction-graph.spec.ts-snapshots/default-flow-direction-graph-1-chromium.png similarity index 100% rename from tests/flow-direction-graph.spec.ts-snapshots/default-flow-direction-graph-1-chromium-darwin.png rename to tests/flow-direction-graph.spec.ts-snapshots/default-flow-direction-graph-1-chromium.png diff --git a/tests/flow-direction-graph.spec.ts-snapshots/user-flow-direction-graph-1-chromium-darwin.png b/tests/flow-direction-graph.spec.ts-snapshots/user-flow-direction-graph-1-chromium.png similarity index 100% rename from tests/flow-direction-graph.spec.ts-snapshots/user-flow-direction-graph-1-chromium-darwin.png rename to tests/flow-direction-graph.spec.ts-snapshots/user-flow-direction-graph-1-chromium.png diff --git a/tests/flow-graph.spec.ts b/tests/flow-graph.spec.ts index 16f2794f8..e49d9102b 100644 --- a/tests/flow-graph.spec.ts +++ b/tests/flow-graph.spec.ts @@ -1,6 +1,10 @@ import { test } from '@playwright/test'; import { it } from './util'; +test.beforeEach(async ({}, testInfo) => { + testInfo.snapshotSuffix = ''; +}); + test('default flow graph', async ({ page }) => { await it(page, '/FlowGraph?animation=false'); }); diff --git a/tests/flow-graph.spec.ts-snapshots/default-flow-graph-1-chromium-darwin.png b/tests/flow-graph.spec.ts-snapshots/default-flow-graph-1-chromium.png similarity index 100% rename from tests/flow-graph.spec.ts-snapshots/default-flow-graph-1-chromium-darwin.png rename to tests/flow-graph.spec.ts-snapshots/default-flow-graph-1-chromium.png diff --git a/tests/flow-graph.spec.ts-snapshots/product-launch-flow-graph-1-chromium-darwin.png b/tests/flow-graph.spec.ts-snapshots/product-launch-flow-graph-1-chromium.png similarity index 100% rename from tests/flow-graph.spec.ts-snapshots/product-launch-flow-graph-1-chromium-darwin.png rename to tests/flow-graph.spec.ts-snapshots/product-launch-flow-graph-1-chromium.png diff --git a/tests/flow-graph.spec.ts-snapshots/task-scheduling-flow-graph-1-chromium-darwin.png b/tests/flow-graph.spec.ts-snapshots/task-scheduling-flow-graph-1-chromium.png similarity index 100% rename from tests/flow-graph.spec.ts-snapshots/task-scheduling-flow-graph-1-chromium-darwin.png rename to tests/flow-graph.spec.ts-snapshots/task-scheduling-flow-graph-1-chromium.png diff --git a/tests/indented-tree.spec.ts b/tests/indented-tree.spec.ts index d5516303d..d58fbb087 100644 --- a/tests/indented-tree.spec.ts +++ b/tests/indented-tree.spec.ts @@ -1,6 +1,10 @@ import { test } from '@playwright/test'; import { it } from './util'; +test.beforeEach(async ({}, testInfo) => { + testInfo.snapshotSuffix = ''; +}); + test('use Default as type', async ({ page }) => { await it(page, '/IndentedTree?type=default'); }); diff --git a/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium-darwin.png deleted file mode 100644 index e62a2e511..000000000 Binary files a/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium-darwin.png and /dev/null differ diff --git a/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium.png b/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium.png new file mode 100644 index 000000000..a0a51ff1c Binary files /dev/null and b/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium.png differ diff --git a/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium-darwin.png deleted file mode 100644 index 249b52068..000000000 Binary files a/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium-darwin.png and /dev/null differ diff --git a/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium.png b/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium.png new file mode 100644 index 000000000..3ebeee46c Binary files /dev/null and b/tests/indented-tree.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium.png differ diff --git a/tests/indented-tree.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium.png similarity index 100% rename from tests/indented-tree.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium-darwin.png rename to tests/indented-tree.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium.png diff --git a/tests/indented-tree.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium.png similarity index 100% rename from tests/indented-tree.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium-darwin.png rename to tests/indented-tree.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium.png diff --git a/tests/indented-tree.spec.ts-snapshots/use-60-100-as-node-width-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/use-60-100-as-node-width-1-chromium.png similarity index 100% rename from tests/indented-tree.spec.ts-snapshots/use-60-100-as-node-width-1-chromium-darwin.png rename to tests/indented-tree.spec.ts-snapshots/use-60-100-as-node-width-1-chromium.png diff --git a/tests/indented-tree.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium.png similarity index 100% rename from tests/indented-tree.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium-darwin.png rename to tests/indented-tree.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium.png diff --git a/tests/indented-tree.spec.ts-snapshots/use-Boxed-as-type-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/use-Boxed-as-type-1-chromium.png similarity index 100% rename from tests/indented-tree.spec.ts-snapshots/use-Boxed-as-type-1-chromium-darwin.png rename to tests/indented-tree.spec.ts-snapshots/use-Boxed-as-type-1-chromium.png diff --git a/tests/indented-tree.spec.ts-snapshots/use-Default-as-type-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/use-Default-as-type-1-chromium.png similarity index 100% rename from tests/indented-tree.spec.ts-snapshots/use-Default-as-type-1-chromium-darwin.png rename to tests/indented-tree.spec.ts-snapshots/use-Default-as-type-1-chromium.png diff --git a/tests/indented-tree.spec.ts-snapshots/use-Left-as-node-direction-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/use-Left-as-node-direction-1-chromium.png similarity index 100% rename from tests/indented-tree.spec.ts-snapshots/use-Left-as-node-direction-1-chromium-darwin.png rename to tests/indented-tree.spec.ts-snapshots/use-Left-as-node-direction-1-chromium.png diff --git a/tests/indented-tree.spec.ts-snapshots/use-Linear-as-type-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/use-Linear-as-type-1-chromium.png similarity index 100% rename from tests/indented-tree.spec.ts-snapshots/use-Linear-as-type-1-chromium-darwin.png rename to tests/indented-tree.spec.ts-snapshots/use-Linear-as-type-1-chromium.png diff --git a/tests/indented-tree.spec.ts-snapshots/use-Right-as-node-direction-1-chromium-darwin.png b/tests/indented-tree.spec.ts-snapshots/use-Right-as-node-direction-1-chromium.png similarity index 100% rename from tests/indented-tree.spec.ts-snapshots/use-Right-as-node-direction-1-chromium-darwin.png rename to tests/indented-tree.spec.ts-snapshots/use-Right-as-node-direction-1-chromium.png diff --git a/tests/mind-map.spec.ts b/tests/mind-map.spec.ts index c9023834e..37e2d8001 100644 --- a/tests/mind-map.spec.ts +++ b/tests/mind-map.spec.ts @@ -1,6 +1,10 @@ import { test } from '@playwright/test'; import { it } from './util'; +test.beforeEach(async ({}, testInfo) => { + testInfo.snapshotSuffix = ''; +}); + test('use Default as type', async ({ page }) => { await it(page, '/MindMap?type=default'); }); diff --git a/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium-darwin.png deleted file mode 100644 index fd3de079d..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium.png b/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium.png new file mode 100644 index 000000000..44b792c59 Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-icon-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium-darwin.png deleted file mode 100644 index c4e24ca20..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium.png b/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium.png new file mode 100644 index 000000000..957f58fe4 Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/trigger-collapse-expand-by-node-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium-darwin.png deleted file mode 100644 index 4afcff127..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium.png b/tests/mind-map.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium.png new file mode 100644 index 000000000..d39f99ba3 Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/use-1-as-a-default-expand-level-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium-darwin.png deleted file mode 100644 index 57e9aac77..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium.png b/tests/mind-map.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium.png new file mode 100644 index 000000000..3239a0381 Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/use-2-as-a-default-expand-level-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-60-100-as-node-width-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-60-100-as-node-width-1-chromium-darwin.png deleted file mode 100644 index b41ad59dd..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/use-60-100-as-node-width-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/use-60-100-as-node-width-1-chromium.png b/tests/mind-map.spec.ts-snapshots/use-60-100-as-node-width-1-chromium.png new file mode 100644 index 000000000..a21005e1f Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/use-60-100-as-node-width-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium-darwin.png deleted file mode 100644 index 38900d481..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium.png b/tests/mind-map.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium.png new file mode 100644 index 000000000..543d7c6d2 Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/use-Alternate-as-node-direction-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Boxed-as-type-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-Boxed-as-type-1-chromium-darwin.png deleted file mode 100644 index 01c528824..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/use-Boxed-as-type-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Boxed-as-type-1-chromium.png b/tests/mind-map.spec.ts-snapshots/use-Boxed-as-type-1-chromium.png new file mode 100644 index 000000000..c492e4128 Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/use-Boxed-as-type-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Default-as-type-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-Default-as-type-1-chromium-darwin.png deleted file mode 100644 index a9c19eb20..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/use-Default-as-type-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Default-as-type-1-chromium.png b/tests/mind-map.spec.ts-snapshots/use-Default-as-type-1-chromium.png new file mode 100644 index 000000000..52de81a0b Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/use-Default-as-type-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Left-as-node-direction-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-Left-as-node-direction-1-chromium-darwin.png deleted file mode 100644 index 9604e8512..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/use-Left-as-node-direction-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Left-as-node-direction-1-chromium.png b/tests/mind-map.spec.ts-snapshots/use-Left-as-node-direction-1-chromium.png new file mode 100644 index 000000000..b44f054c7 Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/use-Left-as-node-direction-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Linear-as-type-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-Linear-as-type-1-chromium-darwin.png deleted file mode 100644 index 38900d481..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/use-Linear-as-type-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Linear-as-type-1-chromium.png b/tests/mind-map.spec.ts-snapshots/use-Linear-as-type-1-chromium.png new file mode 100644 index 000000000..543d7c6d2 Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/use-Linear-as-type-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Right-as-node-direction-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-Right-as-node-direction-1-chromium-darwin.png deleted file mode 100644 index 8df7d5451..000000000 Binary files a/tests/mind-map.spec.ts-snapshots/use-Right-as-node-direction-1-chromium-darwin.png and /dev/null differ diff --git a/tests/mind-map.spec.ts-snapshots/use-Right-as-node-direction-1-chromium.png b/tests/mind-map.spec.ts-snapshots/use-Right-as-node-direction-1-chromium.png new file mode 100644 index 000000000..61119ae0a Binary files /dev/null and b/tests/mind-map.spec.ts-snapshots/use-Right-as-node-direction-1-chromium.png differ diff --git a/tests/mind-map.spec.ts-snapshots/use-custom-node-style-1-chromium-darwin.png b/tests/mind-map.spec.ts-snapshots/use-custom-node-style-1-chromium.png similarity index 100% rename from tests/mind-map.spec.ts-snapshots/use-custom-node-style-1-chromium-darwin.png rename to tests/mind-map.spec.ts-snapshots/use-custom-node-style-1-chromium.png diff --git a/tests/network-graph.spec.ts b/tests/network-graph.spec.ts index 0682c7299..2cbabd888 100644 --- a/tests/network-graph.spec.ts +++ b/tests/network-graph.spec.ts @@ -1,6 +1,10 @@ import { test } from '@playwright/test'; import { it } from './util'; +test.beforeEach(async ({}, testInfo) => { + testInfo.snapshotSuffix = ''; +}); + test('language tree', async ({ page }) => { await it(page, '/NetworkGraph'); }); diff --git a/tests/network-graph.spec.ts-snapshots/language-tree-1-chromium-darwin.png b/tests/network-graph.spec.ts-snapshots/language-tree-1-chromium-darwin.png deleted file mode 100644 index 6779c2aa6..000000000 Binary files a/tests/network-graph.spec.ts-snapshots/language-tree-1-chromium-darwin.png and /dev/null differ diff --git a/tests/network-graph.spec.ts-snapshots/language-tree-1-chromium.png b/tests/network-graph.spec.ts-snapshots/language-tree-1-chromium.png new file mode 100644 index 000000000..fc99eab95 Binary files /dev/null and b/tests/network-graph.spec.ts-snapshots/language-tree-1-chromium.png differ diff --git a/tests/organization-chart.spec.ts b/tests/organization-chart.spec.ts index 044977dca..71e06abf6 100644 --- a/tests/organization-chart.spec.ts +++ b/tests/organization-chart.spec.ts @@ -1,6 +1,10 @@ import { test } from '@playwright/test'; import { it } from './util'; +test.beforeEach(async ({}, testInfo) => { + testInfo.snapshotSuffix = ''; +}); + test('default organization', async ({ page }) => { await it(page, '/OrganizationChart?animation=false'); }); diff --git a/tests/organization-chart.spec.ts-snapshots/default-organization-1-chromium-darwin.png b/tests/organization-chart.spec.ts-snapshots/default-organization-1-chromium-darwin.png deleted file mode 100644 index f72dbb5fd..000000000 Binary files a/tests/organization-chart.spec.ts-snapshots/default-organization-1-chromium-darwin.png and /dev/null differ diff --git a/tests/organization-chart.spec.ts-snapshots/default-organization-1-chromium.png b/tests/organization-chart.spec.ts-snapshots/default-organization-1-chromium.png new file mode 100644 index 000000000..0180cc939 Binary files /dev/null and b/tests/organization-chart.spec.ts-snapshots/default-organization-1-chromium.png differ diff --git a/tests/organization-chart.spec.ts-snapshots/organization-with-data-1-chromium-darwin.png b/tests/organization-chart.spec.ts-snapshots/organization-with-data-1-chromium-darwin.png deleted file mode 100644 index dd8ccaef1..000000000 Binary files a/tests/organization-chart.spec.ts-snapshots/organization-with-data-1-chromium-darwin.png and /dev/null differ diff --git a/tests/organization-chart.spec.ts-snapshots/organization-with-data-1-chromium.png b/tests/organization-chart.spec.ts-snapshots/organization-with-data-1-chromium.png new file mode 100644 index 000000000..0180cc939 Binary files /dev/null and b/tests/organization-chart.spec.ts-snapshots/organization-with-data-1-chromium.png differ