diff --git a/dev-packages/node-core-integration-tests/suites/anr/app-path.mjs b/dev-packages/node-core-integration-tests/suites/anr/app-path.mjs index 2cf1cff1ea32..28f245851b01 100644 --- a/dev-packages/node-core-integration-tests/suites/anr/app-path.mjs +++ b/dev-packages/node-core-integration-tests/suites/anr/app-path.mjs @@ -25,7 +25,7 @@ Sentry.setUser({ email: 'person@home.com' }); Sentry.addBreadcrumb({ message: 'important message!' }); function longWork() { - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 50; i++) { const salt = crypto.randomBytes(128).toString('base64'); const hash = crypto.pbkdf2Sync('myPassword', salt, 10000, 512, 'sha512'); assert.ok(hash); diff --git a/dev-packages/node-core-integration-tests/suites/anr/basic-multiple.mjs b/dev-packages/node-core-integration-tests/suites/anr/basic-multiple.mjs index 9c8b17b590bc..1caf96d3abdb 100644 --- a/dev-packages/node-core-integration-tests/suites/anr/basic-multiple.mjs +++ b/dev-packages/node-core-integration-tests/suites/anr/basic-multiple.mjs @@ -21,7 +21,7 @@ Sentry.setUser({ email: 'person@home.com' }); Sentry.addBreadcrumb({ message: 'important message!' }); function longWork() { - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 50; i++) { const salt = crypto.randomBytes(128).toString('base64'); const hash = crypto.pbkdf2Sync('myPassword', salt, 10000, 512, 'sha512'); assert.ok(hash); diff --git a/dev-packages/node-core-integration-tests/suites/anr/basic-session.js b/dev-packages/node-core-integration-tests/suites/anr/basic-session.js index 541c5ee25e36..e89a65e79ad2 100644 --- a/dev-packages/node-core-integration-tests/suites/anr/basic-session.js +++ b/dev-packages/node-core-integration-tests/suites/anr/basic-session.js @@ -20,7 +20,7 @@ Sentry.setUser({ email: 'person@home.com' }); Sentry.addBreadcrumb({ message: 'important message!' }); function longWork() { - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 50; i++) { const salt = crypto.randomBytes(128).toString('base64'); const hash = crypto.pbkdf2Sync('myPassword', salt, 10000, 512, 'sha512'); assert.ok(hash); diff --git a/dev-packages/node-core-integration-tests/suites/anr/basic.js b/dev-packages/node-core-integration-tests/suites/anr/basic.js index 738810f2fa2f..9010fb296c48 100644 --- a/dev-packages/node-core-integration-tests/suites/anr/basic.js +++ b/dev-packages/node-core-integration-tests/suites/anr/basic.js @@ -22,7 +22,7 @@ Sentry.setUser({ email: 'person@home.com' }); Sentry.addBreadcrumb({ message: 'important message!' }); function longWork() { - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 50; i++) { const salt = crypto.randomBytes(128).toString('base64'); const hash = crypto.pbkdf2Sync('myPassword', salt, 10000, 512, 'sha512'); assert.ok(hash); diff --git a/dev-packages/node-core-integration-tests/suites/anr/basic.mjs b/dev-packages/node-core-integration-tests/suites/anr/basic.mjs index 5902394e8109..109a201ecb98 100644 --- a/dev-packages/node-core-integration-tests/suites/anr/basic.mjs +++ b/dev-packages/node-core-integration-tests/suites/anr/basic.mjs @@ -21,7 +21,7 @@ Sentry.setUser({ email: 'person@home.com' }); Sentry.addBreadcrumb({ message: 'important message!' }); function longWork() { - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 50; i++) { const salt = crypto.randomBytes(128).toString('base64'); const hash = crypto.pbkdf2Sync('myPassword', salt, 10000, 512, 'sha512'); assert.ok(hash); diff --git a/dev-packages/node-core-integration-tests/suites/anr/forked.js b/dev-packages/node-core-integration-tests/suites/anr/forked.js index be4848abee5c..90148e549ce1 100644 --- a/dev-packages/node-core-integration-tests/suites/anr/forked.js +++ b/dev-packages/node-core-integration-tests/suites/anr/forked.js @@ -21,7 +21,7 @@ Sentry.setUser({ email: 'person@home.com' }); Sentry.addBreadcrumb({ message: 'important message!' }); function longWork() { - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 50; i++) { const salt = crypto.randomBytes(128).toString('base64'); const hash = crypto.pbkdf2Sync('myPassword', salt, 10000, 512, 'sha512'); assert.ok(hash); diff --git a/dev-packages/node-core-integration-tests/suites/anr/isolated.mjs b/dev-packages/node-core-integration-tests/suites/anr/isolated.mjs index 37e804d01b71..8d24c4cbd021 100644 --- a/dev-packages/node-core-integration-tests/suites/anr/isolated.mjs +++ b/dev-packages/node-core-integration-tests/suites/anr/isolated.mjs @@ -18,7 +18,7 @@ setupOtel(client); async function longWork() { await new Promise(resolve => setTimeout(resolve, 1000)); - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 50; i++) { const salt = crypto.randomBytes(128).toString('base64'); const hash = crypto.pbkdf2Sync('myPassword', salt, 10000, 512, 'sha512'); assert.ok(hash); diff --git a/dev-packages/node-core-integration-tests/suites/anr/stop-and-start.js b/dev-packages/node-core-integration-tests/suites/anr/stop-and-start.js index c377c8716814..bec3d83b7d39 100644 --- a/dev-packages/node-core-integration-tests/suites/anr/stop-and-start.js +++ b/dev-packages/node-core-integration-tests/suites/anr/stop-and-start.js @@ -23,7 +23,7 @@ Sentry.setUser({ email: 'person@home.com' }); Sentry.addBreadcrumb({ message: 'important message!' }); function longWorkIgnored() { - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 50; i++) { const salt = crypto.randomBytes(128).toString('base64'); const hash = crypto.pbkdf2Sync('myPassword', salt, 10000, 512, 'sha512'); assert.ok(hash); @@ -31,7 +31,7 @@ function longWorkIgnored() { } function longWork() { - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 50; i++) { const salt = crypto.randomBytes(128).toString('base64'); const hash = crypto.pbkdf2Sync('myPassword', salt, 10000, 512, 'sha512'); assert.ok(hash);