diff --git a/packages/nextjs/test/integration/next-env.d.ts b/packages/nextjs/test/integration/next-env.d.ts
index c6643fda12ff..9bc3dd46b9d9 100644
--- a/packages/nextjs/test/integration/next-env.d.ts
+++ b/packages/nextjs/test/integration/next-env.d.ts
@@ -1,3 +1,6 @@
///
///
///
+
+// NOTE: This file should not be edited
+// see https://nextjs.org/docs/basic-features/typescript for more information.
diff --git a/packages/nextjs/test/integration/test/client/sessionNavigate.js b/packages/nextjs/test/integration/test/client/sessionNavigate.js
index 6a07f87dfdb5..1ed68a779568 100644
--- a/packages/nextjs/test/integration/test/client/sessionNavigate.js
+++ b/packages/nextjs/test/integration/test/client/sessionNavigate.js
@@ -10,7 +10,7 @@ module.exports = async ({ page, url, requests }) => {
errors: 0,
});
- await sleep(100);
+ await sleep(250);
await waitForAll([
page.click('a#alsoHealthy'),
@@ -24,7 +24,7 @@ module.exports = async ({ page, url, requests }) => {
errors: 0,
});
- await sleep(100);
+ await sleep(250);
expectSession(requests.sessions[2], {
init: true,
@@ -32,7 +32,7 @@ module.exports = async ({ page, url, requests }) => {
errors: 0,
});
- await sleep(100);
+ await sleep(250);
await waitForAll([
page.click('a#healthy'),
diff --git a/packages/nextjs/test/integration/test/client/tracingNavigate.js b/packages/nextjs/test/integration/test/client/tracingNavigate.js
index d057203063fa..65894f857177 100644
--- a/packages/nextjs/test/integration/test/client/tracingNavigate.js
+++ b/packages/nextjs/test/integration/test/client/tracingNavigate.js
@@ -15,7 +15,7 @@ module.exports = async ({ page, url, requests }) => {
},
});
- await sleep(100);
+ await sleep(250);
await page.click('a#alsoHealthy');
await page.waitForRequest(isTransactionRequest);
@@ -33,7 +33,7 @@ module.exports = async ({ page, url, requests }) => {
},
});
- await sleep(100);
+ await sleep(250);
await page.click('a#healthy');
await page.waitForRequest(isTransactionRequest);
diff --git a/packages/nextjs/test/integration/test/server/errorApiEndpoint.js b/packages/nextjs/test/integration/test/server/errorApiEndpoint.js
index f0d9985a1871..00e3ab128d81 100644
--- a/packages/nextjs/test/integration/test/server/errorApiEndpoint.js
+++ b/packages/nextjs/test/integration/test/server/errorApiEndpoint.js
@@ -49,7 +49,7 @@ module.exports = async ({ url: urlBase, argv }) => {
);
await getAsync(url);
- await sleep(100);
+ await sleep(250);
assert.ok(capturedErrorRequest.isDone(), 'Did not intercept expected error request');
assert.ok(capturedTransactionRequest.isDone(), 'Did not intercept expected transaction request');
diff --git a/packages/nextjs/test/integration/test/server/errorServerSideProps.js b/packages/nextjs/test/integration/test/server/errorServerSideProps.js
index b18b099f8af0..a6c622de5db5 100644
--- a/packages/nextjs/test/integration/test/server/errorServerSideProps.js
+++ b/packages/nextjs/test/integration/test/server/errorServerSideProps.js
@@ -29,7 +29,7 @@ module.exports = async ({ url: urlBase, argv }) => {
);
await getAsync(url);
- await sleep(100);
+ await sleep(250);
assert.ok(capturedRequest.isDone(), 'Did not intercept expected request');
};
diff --git a/packages/nextjs/test/integration/test/server/tracing200.js b/packages/nextjs/test/integration/test/server/tracing200.js
index fa8ae1d69abb..91d767e74967 100644
--- a/packages/nextjs/test/integration/test/server/tracing200.js
+++ b/packages/nextjs/test/integration/test/server/tracing200.js
@@ -26,7 +26,7 @@ module.exports = async ({ url: urlBase, argv }) => {
);
await getAsync(url);
- await sleep(100);
+ await sleep(250);
assert.ok(capturedRequest.isDone(), 'Did not intercept expected request');
};
diff --git a/packages/nextjs/test/integration/test/server/tracing500.js b/packages/nextjs/test/integration/test/server/tracing500.js
index 1958478a598f..54c565f43f23 100644
--- a/packages/nextjs/test/integration/test/server/tracing500.js
+++ b/packages/nextjs/test/integration/test/server/tracing500.js
@@ -25,7 +25,7 @@ module.exports = async ({ url: urlBase, argv }) => {
);
await getAsync(url);
- await sleep(100);
+ await sleep(250);
assert.ok(capturedRequest.isDone(), 'Did not intercept expected request');
};
diff --git a/packages/nextjs/test/integration/test/server/tracingHttp.js b/packages/nextjs/test/integration/test/server/tracingHttp.js
index 27d989c4395a..edb31393048c 100644
--- a/packages/nextjs/test/integration/test/server/tracingHttp.js
+++ b/packages/nextjs/test/integration/test/server/tracingHttp.js
@@ -40,7 +40,7 @@ module.exports = async ({ url: urlBase, argv }) => {
);
await getAsync(url);
- await sleep(100);
+ await sleep(250);
assert.ok(capturedRequest.isDone(), 'Did not intercept expected request');
};