Skip to content

Commit 43de19a

Browse files
mrtopsytjpaten
authored and
jpaten
committed
fix: removed redundant file-level configuration, increased anvil-catalog timeout to 60s (#4078)
1 parent 652380c commit 43de19a

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

explorer/e2e/anvil-catalog/anvilcatalog-sort.spec.ts

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import { test } from "@playwright/test";
22
import { testSortCatalog } from "../testFunctions";
33
import { anvilcatalogTabs } from "./anvilcatalog-tabs";
44

5-
test.describe.configure({ mode: "parallel" });
6-
75
test("On the Consortia tab, expect clicking the column header (the sort button) to keep the first element of the column visible", async ({
86
page,
97
}) => {

explorer/e2e/anvil-catalog/anvilcatalog-tabs.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/* eslint-disable sonarjs/no-duplicate-string -- ignoring duplicate strings here */
2-
32
import { AnvilCatalogTabCollection, TabDescription } from "../testInterfaces";
43

54
export const anvilcatalogTabs: AnvilCatalogTabCollection = {

explorer/e2e/anvil/anvil-sort.spec.ts

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import { test } from "@playwright/test";
22
import { testSortAzul } from "../testFunctions";
33
import { anvilTabs } from "./anvil-tabs";
44

5-
test.describe.configure({ mode: "parallel" });
6-
75
test("Expect clicking each column header three times to keep the first text element visible on the Datasets tab", async ({
86
page,
97
}) => {

explorer/playwright_anvil-catalog.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const config: PlaywrightTestConfig = {
2222
],
2323
testDir: "e2e",
2424
testMatch: /.*\/(anvil-catalog)\/.*\.spec\.ts/,
25+
timeout: 60 * 1000,
2526
use: {
2627
baseURL: "http://localhost:3000/",
2728
screenshot: "only-on-failure",

0 commit comments

Comments
 (0)