Skip to content

Commit a8c7998

Browse files
committed
run most just once
1 parent 69df6e4 commit a8c7998

File tree

2 files changed

+2
-2
lines changed
  • packages/integration-tests/suites/replay

2 files changed

+2
-2
lines changed

packages/integration-tests/suites/replay/sessionExpiry/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
// Session should expire after 2s - keep in sync with init.js
1616
const SESSION_TIMEOUT = 2000;
1717

18-
for (let i = 0; i < 100; i++) {
18+
for (let i = 0; i < 1; i++) {
1919
sentryTest(`handles an expired session RUN ${i}`, async ({ getLocalTestPath, page }) => {
2020
if (shouldSkipReplayTest()) {
2121
sentryTest.skip();

packages/integration-tests/suites/replay/sessionMaxAge/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const SESSION_MAX_AGE = 4000;
1919
The main difference between this and sessionExpiry test, is that here we wait for the overall time (4s)
2020
in multiple steps (2s, 2s) instead of waiting for the whole time at once (4s).
2121
*/
22-
for (let i = 0; i < 100; i++) {
22+
for (let i = 0; i < 1; i++) {
2323
sentryTest(`handles session that exceeds max age RUN ${i}`, async ({ getLocalTestPath, page }) => {
2424
if (shouldSkipReplayTest()) {
2525
sentryTest.skip();

0 commit comments

Comments
 (0)