diff --git a/packages/e2e-tests/test-applications/create-next-app/playwright.config.ts b/packages/e2e-tests/test-applications/create-next-app/playwright.config.ts index 734bda58c10f..7c84f56d178f 100644 --- a/packages/e2e-tests/test-applications/create-next-app/playwright.config.ts +++ b/packages/e2e-tests/test-applications/create-next-app/playwright.config.ts @@ -20,7 +20,7 @@ const port = 3030; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/create-next-app/tests/behaviour-client.test.ts b/packages/e2e-tests/test-applications/create-next-app/tests/behaviour-client.test.ts index d0ede66cf32f..54d52d32172b 100644 --- a/packages/e2e-tests/test-applications/create-next-app/tests/behaviour-client.test.ts +++ b/packages/e2e-tests/test-applications/create-next-app/tests/behaviour-client.test.ts @@ -4,7 +4,7 @@ import axios, { AxiosError } from 'axios'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test('Sends a client-side exception to Sentry', async ({ page }) => { await page.goto('/'); diff --git a/packages/e2e-tests/test-applications/create-next-app/tests/behaviour-server.test.ts b/packages/e2e-tests/test-applications/create-next-app/tests/behaviour-server.test.ts index 3b3d74af1885..a864701afa9b 100644 --- a/packages/e2e-tests/test-applications/create-next-app/tests/behaviour-server.test.ts +++ b/packages/e2e-tests/test-applications/create-next-app/tests/behaviour-server.test.ts @@ -4,7 +4,7 @@ import axios, { AxiosError } from 'axios'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test('Sends a server-side exception to Sentry', async ({ baseURL }) => { const { data } = await axios.get(`${baseURL}/api/error`); diff --git a/packages/e2e-tests/test-applications/create-remix-app-v2/playwright.config.ts b/packages/e2e-tests/test-applications/create-remix-app-v2/playwright.config.ts index 33f00235771b..79efcbc22c1a 100644 --- a/packages/e2e-tests/test-applications/create-remix-app-v2/playwright.config.ts +++ b/packages/e2e-tests/test-applications/create-remix-app-v2/playwright.config.ts @@ -9,7 +9,7 @@ const port = 3030; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/create-remix-app-v2/tests/behaviour-client.test.ts b/packages/e2e-tests/test-applications/create-remix-app-v2/tests/behaviour-client.test.ts index e07481075f5a..6d61264b8faf 100644 --- a/packages/e2e-tests/test-applications/create-remix-app-v2/tests/behaviour-client.test.ts +++ b/packages/e2e-tests/test-applications/create-remix-app-v2/tests/behaviour-client.test.ts @@ -1,7 +1,7 @@ import { test, expect } from '@playwright/test'; import axios, { AxiosError } from 'axios'; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; diff --git a/packages/e2e-tests/test-applications/create-remix-app/playwright.config.ts b/packages/e2e-tests/test-applications/create-remix-app/playwright.config.ts index b35659cecdb5..785ca43321a4 100644 --- a/packages/e2e-tests/test-applications/create-remix-app/playwright.config.ts +++ b/packages/e2e-tests/test-applications/create-remix-app/playwright.config.ts @@ -9,7 +9,7 @@ const port = 3030; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/create-remix-app/tests/behaviour-client.test.ts b/packages/e2e-tests/test-applications/create-remix-app/tests/behaviour-client.test.ts index e07481075f5a..6d61264b8faf 100644 --- a/packages/e2e-tests/test-applications/create-remix-app/tests/behaviour-client.test.ts +++ b/packages/e2e-tests/test-applications/create-remix-app/tests/behaviour-client.test.ts @@ -1,7 +1,7 @@ import { test, expect } from '@playwright/test'; import axios, { AxiosError } from 'axios'; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; diff --git a/packages/e2e-tests/test-applications/debug-id-sourcemaps/tests/server.test.ts b/packages/e2e-tests/test-applications/debug-id-sourcemaps/tests/server.test.ts index df41adb615c8..51f272fa514a 100644 --- a/packages/e2e-tests/test-applications/debug-id-sourcemaps/tests/server.test.ts +++ b/packages/e2e-tests/test-applications/debug-id-sourcemaps/tests/server.test.ts @@ -5,7 +5,7 @@ import path from 'path'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test( 'Find symbolicated event on sentry', diff --git a/packages/e2e-tests/test-applications/nextjs-app-dir/playwright.config.ts b/packages/e2e-tests/test-applications/nextjs-app-dir/playwright.config.ts index 391b5eac610e..ab3c40a21471 100644 --- a/packages/e2e-tests/test-applications/nextjs-app-dir/playwright.config.ts +++ b/packages/e2e-tests/test-applications/nextjs-app-dir/playwright.config.ts @@ -21,7 +21,7 @@ const eventProxyPort = 3031; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/nextjs-app-dir/tests/exceptions.test.ts b/packages/e2e-tests/test-applications/nextjs-app-dir/tests/exceptions.test.ts index d31e869fd8b3..5383a43c34a9 100644 --- a/packages/e2e-tests/test-applications/nextjs-app-dir/tests/exceptions.test.ts +++ b/packages/e2e-tests/test-applications/nextjs-app-dir/tests/exceptions.test.ts @@ -5,7 +5,7 @@ import axios, { AxiosError } from 'axios'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test('Sends a client-side exception to Sentry', async ({ page }) => { await page.goto('/'); diff --git a/packages/e2e-tests/test-applications/nextjs-app-dir/tests/transactions.test.ts b/packages/e2e-tests/test-applications/nextjs-app-dir/tests/transactions.test.ts index 8413d623eb5c..b57538e3b90c 100644 --- a/packages/e2e-tests/test-applications/nextjs-app-dir/tests/transactions.test.ts +++ b/packages/e2e-tests/test-applications/nextjs-app-dir/tests/transactions.test.ts @@ -5,7 +5,7 @@ import axios, { AxiosError } from 'axios'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test('Sends a pageload transaction', async ({ page }) => { const pageloadTransactionEventPromise = waitForTransaction('nextjs-13-app-dir', transactionEvent => { diff --git a/packages/e2e-tests/test-applications/node-experimental-fastify-app/playwright.config.ts b/packages/e2e-tests/test-applications/node-experimental-fastify-app/playwright.config.ts index f39997dc76e8..8565f228f271 100644 --- a/packages/e2e-tests/test-applications/node-experimental-fastify-app/playwright.config.ts +++ b/packages/e2e-tests/test-applications/node-experimental-fastify-app/playwright.config.ts @@ -10,7 +10,7 @@ const eventProxyPort = 3031; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/errors.test.ts b/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/errors.test.ts index 4656ba23e7de..70a0a9c660e0 100644 --- a/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/errors.test.ts +++ b/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/errors.test.ts @@ -4,7 +4,7 @@ import axios, { AxiosError } from 'axios'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test('Sends exception to Sentry', async ({ baseURL }) => { const { data } = await axios.get(`${baseURL}/test-error`); diff --git a/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/propagation.test.ts b/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/propagation.test.ts index d069fd299682..b05228b21311 100644 --- a/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/propagation.test.ts +++ b/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/propagation.test.ts @@ -6,7 +6,7 @@ import { waitForTransaction } from '../event-proxy-server'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test('Propagates trace for outgoing http requests', async ({ baseURL }) => { const inboundTransactionPromise = waitForTransaction('node-experimental-fastify-app', transactionEvent => { diff --git a/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/transactions.test.ts b/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/transactions.test.ts index b9241d5a2569..b89297c1689d 100644 --- a/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/transactions.test.ts +++ b/packages/e2e-tests/test-applications/node-experimental-fastify-app/tests/transactions.test.ts @@ -5,7 +5,7 @@ import axios, { AxiosError } from 'axios'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test('Sends an API route transaction', async ({ baseURL }) => { const pageloadTransactionEventPromise = waitForTransaction('node-experimental-fastify-app', transactionEvent => { diff --git a/packages/e2e-tests/test-applications/node-express-app/playwright.config.ts b/packages/e2e-tests/test-applications/node-express-app/playwright.config.ts index d3fbb6971415..58192fc98bb6 100644 --- a/packages/e2e-tests/test-applications/node-express-app/playwright.config.ts +++ b/packages/e2e-tests/test-applications/node-express-app/playwright.config.ts @@ -15,7 +15,7 @@ const expressPort = 3030; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/node-express-app/tests/server.test.ts b/packages/e2e-tests/test-applications/node-express-app/tests/server.test.ts index 4429c2d46edd..2443fcf55f66 100644 --- a/packages/e2e-tests/test-applications/node-express-app/tests/server.test.ts +++ b/packages/e2e-tests/test-applications/node-express-app/tests/server.test.ts @@ -5,7 +5,7 @@ import { waitForError } from '../event-proxy-server'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test('Sends exception to Sentry', async ({ baseURL }) => { const { data } = await axios.get(`${baseURL}/test-error`); diff --git a/packages/e2e-tests/test-applications/react-create-hash-router/playwright.config.ts b/packages/e2e-tests/test-applications/react-create-hash-router/playwright.config.ts index c68482378d7a..5f93f826ebf0 100644 --- a/packages/e2e-tests/test-applications/react-create-hash-router/playwright.config.ts +++ b/packages/e2e-tests/test-applications/react-create-hash-router/playwright.config.ts @@ -7,7 +7,7 @@ import { devices } from '@playwright/test'; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/react-create-hash-router/tests/behaviour-test.spec.ts b/packages/e2e-tests/test-applications/react-create-hash-router/tests/behaviour-test.spec.ts index 43d8eeec8f35..5397dfa8eb64 100644 --- a/packages/e2e-tests/test-applications/react-create-hash-router/tests/behaviour-test.spec.ts +++ b/packages/e2e-tests/test-applications/react-create-hash-router/tests/behaviour-test.spec.ts @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test'; import axios, { AxiosError } from 'axios'; import { ReplayRecordingData } from './fixtures/ReplayRecordingData'; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; diff --git a/packages/e2e-tests/test-applications/react-router-6-use-routes/playwright.config.ts b/packages/e2e-tests/test-applications/react-router-6-use-routes/playwright.config.ts index c68482378d7a..5f93f826ebf0 100644 --- a/packages/e2e-tests/test-applications/react-router-6-use-routes/playwright.config.ts +++ b/packages/e2e-tests/test-applications/react-router-6-use-routes/playwright.config.ts @@ -7,7 +7,7 @@ import { devices } from '@playwright/test'; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/react-router-6-use-routes/tests/behaviour-test.spec.ts b/packages/e2e-tests/test-applications/react-router-6-use-routes/tests/behaviour-test.spec.ts index 2bda1adcbf9c..4800c9e7cb0e 100644 --- a/packages/e2e-tests/test-applications/react-router-6-use-routes/tests/behaviour-test.spec.ts +++ b/packages/e2e-tests/test-applications/react-router-6-use-routes/tests/behaviour-test.spec.ts @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test'; import axios, { AxiosError } from 'axios'; import { ReplayRecordingData } from './fixtures/ReplayRecordingData'; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; diff --git a/packages/e2e-tests/test-applications/standard-frontend-react-tracing-import/playwright.config.ts b/packages/e2e-tests/test-applications/standard-frontend-react-tracing-import/playwright.config.ts index c68482378d7a..5f93f826ebf0 100644 --- a/packages/e2e-tests/test-applications/standard-frontend-react-tracing-import/playwright.config.ts +++ b/packages/e2e-tests/test-applications/standard-frontend-react-tracing-import/playwright.config.ts @@ -7,7 +7,7 @@ import { devices } from '@playwright/test'; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/standard-frontend-react-tracing-import/tests/behaviour-test.spec.ts b/packages/e2e-tests/test-applications/standard-frontend-react-tracing-import/tests/behaviour-test.spec.ts index 8ff0e686feb4..632d2bfe9d55 100644 --- a/packages/e2e-tests/test-applications/standard-frontend-react-tracing-import/tests/behaviour-test.spec.ts +++ b/packages/e2e-tests/test-applications/standard-frontend-react-tracing-import/tests/behaviour-test.spec.ts @@ -1,7 +1,7 @@ import { test, expect } from '@playwright/test'; import axios, { AxiosError } from 'axios'; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; diff --git a/packages/e2e-tests/test-applications/standard-frontend-react/playwright.config.ts b/packages/e2e-tests/test-applications/standard-frontend-react/playwright.config.ts index c68482378d7a..5f93f826ebf0 100644 --- a/packages/e2e-tests/test-applications/standard-frontend-react/playwright.config.ts +++ b/packages/e2e-tests/test-applications/standard-frontend-react/playwright.config.ts @@ -7,7 +7,7 @@ import { devices } from '@playwright/test'; const config: PlaywrightTestConfig = { testDir: './tests', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/standard-frontend-react/tests/behaviour-test.spec.ts b/packages/e2e-tests/test-applications/standard-frontend-react/tests/behaviour-test.spec.ts index 2bda1adcbf9c..4800c9e7cb0e 100644 --- a/packages/e2e-tests/test-applications/standard-frontend-react/tests/behaviour-test.spec.ts +++ b/packages/e2e-tests/test-applications/standard-frontend-react/tests/behaviour-test.spec.ts @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test'; import axios, { AxiosError } from 'axios'; import { ReplayRecordingData } from './fixtures/ReplayRecordingData'; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; diff --git a/packages/e2e-tests/test-applications/sveltekit/playwright.config.ts b/packages/e2e-tests/test-applications/sveltekit/playwright.config.ts index e38177e51a90..bfa29df7d549 100644 --- a/packages/e2e-tests/test-applications/sveltekit/playwright.config.ts +++ b/packages/e2e-tests/test-applications/sveltekit/playwright.config.ts @@ -15,7 +15,7 @@ const port = 3030; const config: PlaywrightTestConfig = { testDir: './test', /* Maximum time one test can run for. */ - timeout: 60 * 1000, + timeout: 150_000, expect: { /** * Maximum time expect() should wait for the condition to be met. diff --git a/packages/e2e-tests/test-applications/sveltekit/test/transaction.test.ts b/packages/e2e-tests/test-applications/sveltekit/test/transaction.test.ts index edc36cb5ca9c..2a069a79b22f 100644 --- a/packages/e2e-tests/test-applications/sveltekit/test/transaction.test.ts +++ b/packages/e2e-tests/test-applications/sveltekit/test/transaction.test.ts @@ -6,7 +6,7 @@ import axios, { AxiosError } from 'axios'; const authToken = process.env.E2E_TEST_AUTH_TOKEN; const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG; const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT; -const EVENT_POLLING_TIMEOUT = 30_000; +const EVENT_POLLING_TIMEOUT = 90_000; test('Sends a pageload transaction', async ({ page }) => { const pageloadTransactionEventPromise = waitForTransaction('sveltekit', (transactionEvent: any) => {