Skip to content

Commit a31480e

Browse files
committed
Increase test timeouts.
1 parent 7ab4e23 commit a31480e

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

packages/e2e-tests/test-applications/remix-cloudflare-pages/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const port = 3030;
99
const config: PlaywrightTestConfig = {
1010
testDir: './tests',
1111
/* Maximum time one test can run for. */
12-
timeout: 60 * 1000,
12+
timeout: 150_000,
1313
expect: {
1414
/**
1515
* Maximum time expect() should wait for the condition to be met.

packages/e2e-tests/test-applications/remix-cloudflare-pages/tests/behaviour-client.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22
import axios, { AxiosError } from 'axios';
33

4-
const EVENT_POLLING_TIMEOUT = 30_000;
4+
const EVENT_POLLING_TIMEOUT = 60_000;
55

66
const authToken = process.env.E2E_TEST_AUTH_TOKEN;
77
const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG;

packages/e2e-tests/test-applications/remix-cloudflare-pages/tests/behaviour-server.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22
import axios, { AxiosError } from 'axios';
33

4-
const EVENT_POLLING_TIMEOUT = 30_000;
4+
const EVENT_POLLING_TIMEOUT = 60_000;
55

66
const authToken = process.env.E2E_TEST_AUTH_TOKEN;
77
const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG;

packages/e2e-tests/test-applications/remix-cloudflare-workers/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const port = 3030;
99
const config: PlaywrightTestConfig = {
1010
testDir: './tests',
1111
/* Maximum time one test can run for. */
12-
timeout: 60 * 1000,
12+
timeout: 150_000,
1313
expect: {
1414
/**
1515
* Maximum time expect() should wait for the condition to be met.

packages/e2e-tests/test-applications/remix-cloudflare-workers/tests/behaviour-client.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22
import axios, { AxiosError } from 'axios';
33

4-
const EVENT_POLLING_TIMEOUT = 30_000;
4+
const EVENT_POLLING_TIMEOUT = 60_000;
55

66
const authToken = process.env.E2E_TEST_AUTH_TOKEN;
77
const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG;

packages/e2e-tests/test-applications/remix-cloudflare-workers/tests/behaviour-server.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22
import axios, { AxiosError } from 'axios';
33

4-
const EVENT_POLLING_TIMEOUT = 30_000;
4+
const EVENT_POLLING_TIMEOUT = 60_000;
55

66
const authToken = process.env.E2E_TEST_AUTH_TOKEN;
77
const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG;

packages/e2e-tests/test-applications/remix-hydrogen/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const port = 3030;
99
const config: PlaywrightTestConfig = {
1010
testDir: './tests',
1111
/* Maximum time one test can run for. */
12-
timeout: 60 * 1000,
12+
timeout: 150_000,
1313
expect: {
1414
/**
1515
* Maximum time expect() should wait for the condition to be met.

packages/e2e-tests/test-applications/remix-hydrogen/tests/behaviour-client.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22
import axios, { AxiosError } from 'axios';
33

4-
const EVENT_POLLING_TIMEOUT = 30_000;
4+
const EVENT_POLLING_TIMEOUT = 60_000;
55

66
const authToken = process.env.E2E_TEST_AUTH_TOKEN;
77
const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG;

packages/e2e-tests/test-applications/remix-hydrogen/tests/behaviour-server.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22
import axios, { AxiosError } from 'axios';
33

4-
const EVENT_POLLING_TIMEOUT = 30_000;
4+
const EVENT_POLLING_TIMEOUT = 60_000;
55

66
const authToken = process.env.E2E_TEST_AUTH_TOKEN;
77
const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG;

0 commit comments

Comments
 (0)