Skip to content

Commit 747169b

Browse files
committed
Increase timetout to 30s
1 parent 4ee50c0 commit 747169b

File tree

6 files changed

+1
-6
lines changed

6 files changed

+1
-6
lines changed

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default defineConfig({
3232
slowMo: parseInt(process.env.SLOW_MO || '0'),
3333
},
3434
},
35-
timeout: 15000,
35+
timeout: 30000,
3636

3737
/* Configure projects for major browsers */
3838
projects: process.env.CI

playwright/e2e/suites/accession.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const yearId = new Date().getFullYear().toString().slice(-2);
88
test.describe('AccessionTests', () => {
99
let accessionId = 'UNSET';
1010

11-
test.describe.configure({ timeout: 20000 });
1211
test.beforeEach(async ({ page, context }, testInfo) => {
1312
await changeToSuperAdmin(context);
1413
await page.goto('http://127.0.0.1:3000');

playwright/e2e/suites/deliverables.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ import { changeToContributor, changeToReadOnlyUser, changeToSuperAdmin } from '.
3737
import { exactOptions, selectOrg, waitFor } from '../utils/utils';
3838

3939
test.describe('DeliverableTests', () => {
40-
test.describe.configure({ timeout: 20000 });
4140
test.beforeEach(async ({ page, context }) => {
4241
await changeToSuperAdmin(context);
4342
await page.goto('http://127.0.0.1:3000');

playwright/e2e/suites/fundingEntities.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ type FundingEntity = {
1919
};
2020

2121
test.describe('FundingEntitiesTests', () => {
22-
test.describe.configure({ timeout: 15000 });
2322
test.beforeEach(async ({ page, context }, testInfo) => {
2423
await changeToSuperAdmin(context);
2524
await navigateToFundingEntities(page);

playwright/e2e/suites/inventory.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { changeToSuperAdmin } from '../utils/userUtils';
55
import { exactOptions, selectOrg, waitFor } from '../utils/utils';
66

77
test.describe('InventoryTests', () => {
8-
test.describe.configure({ timeout: 15000 });
98
test.beforeEach(async ({ page, context }, testInfo) => {
109
await changeToSuperAdmin(context);
1110
await page.goto('http://127.0.0.1:3000');

playwright/e2e/suites/observations.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { changeToSuperAdmin } from '../utils/userUtils';
44
import { selectOrg, waitFor } from '../utils/utils';
55

66
test.describe('ObservationsTests', () => {
7-
test.describe.configure({ timeout: 20000 });
87
test.beforeEach(async ({ page, context }, testInfo) => {
98
await changeToSuperAdmin(context);
109
await page.goto('http://127.0.0.1:3000');

0 commit comments

Comments
 (0)