diff --git a/examples/advanced-project-js/src/__checks__/api.check.js b/examples/advanced-project-js/src/__checks__/api.check.js index 23b8fea7..e4e49238 100644 --- a/examples/advanced-project-js/src/__checks__/api.check.js +++ b/examples/advanced-project-js/src/__checks__/api.check.js @@ -20,4 +20,5 @@ new ApiCheck('books-api-check-1', { AssertionBuilder.jsonBody('$[0].id').isNotNull(), ], }, + runParallel: true, }); diff --git a/examples/advanced-project-js/src/__checks__/home.check.js b/examples/advanced-project-js/src/__checks__/home.check.js index 063c7964..4100fdea 100644 --- a/examples/advanced-project-js/src/__checks__/home.check.js +++ b/examples/advanced-project-js/src/__checks__/home.check.js @@ -19,6 +19,7 @@ new BrowserCheck('homepage-browser-check', { code: { entrypoint: path.join(__dirname, 'homepage.spec.js'), }, + runParallel: true, }); new BrowserCheck('login-browser-check', { @@ -28,4 +29,5 @@ new BrowserCheck('login-browser-check', { code: { entrypoint: path.join(__dirname, 'login.spec.js'), }, + runParallel: true, }); diff --git a/examples/advanced-project-js/src/__checks__/multi-step-spacex.check.js b/examples/advanced-project-js/src/__checks__/multi-step-spacex.check.js index 1b27b928..aae5eeb0 100644 --- a/examples/advanced-project-js/src/__checks__/multi-step-spacex.check.js +++ b/examples/advanced-project-js/src/__checks__/multi-step-spacex.check.js @@ -18,4 +18,5 @@ new MultiStepCheck('spacex-multistep-check', { code: { entrypoint: path.join(__dirname, 'spacex-requests.spec.js') }, + runParallel: true, }) diff --git a/examples/advanced-project-js/src/__checks__/website-group.check.js b/examples/advanced-project-js/src/__checks__/website-group.check.js index 7f49ebe0..c69052ee 100644 --- a/examples/advanced-project-js/src/__checks__/website-group.check.js +++ b/examples/advanced-project-js/src/__checks__/website-group.check.js @@ -29,6 +29,7 @@ const websiteGroup = new CheckGroup('website-check-group-1', { * The wait time between retries will increase linearly: 30 seconds, 60 seconds, and then 90 seconds between the retries. */ retryStrategy: RetryStrategyBuilder.linearStrategy({ baseBackoffSeconds: 30, maxRetries: 3, sameRegion: false }), + runParallel: true, }); module.exports = { websiteGroup }; diff --git a/examples/advanced-project/src/__checks__/api.check.ts b/examples/advanced-project/src/__checks__/api.check.ts index cd2a4112..5e79ddb4 100644 --- a/examples/advanced-project/src/__checks__/api.check.ts +++ b/examples/advanced-project/src/__checks__/api.check.ts @@ -19,5 +19,6 @@ new ApiCheck('books-api-check-1', { AssertionBuilder.statusCode().equals(200), AssertionBuilder.jsonBody('$[0].id').isNotNull(), ], - } + }, + runParallel: true, }) diff --git a/examples/advanced-project/src/__checks__/home.check.ts b/examples/advanced-project/src/__checks__/home.check.ts index 0e444fe9..b95b8c94 100644 --- a/examples/advanced-project/src/__checks__/home.check.ts +++ b/examples/advanced-project/src/__checks__/home.check.ts @@ -19,6 +19,7 @@ new BrowserCheck('homepage-browser-check', { code: { entrypoint: path.join(__dirname, 'homepage.spec.ts') }, + runParallel: true, }) new BrowserCheck('login-browser-check', { @@ -28,4 +29,5 @@ new BrowserCheck('login-browser-check', { code: { entrypoint: path.join(__dirname, 'login.spec.ts') }, + runParallel: true, }) diff --git a/examples/advanced-project/src/__checks__/multi-step-spacex.check.ts b/examples/advanced-project/src/__checks__/multi-step-spacex.check.ts index 908460c3..51b0f688 100644 --- a/examples/advanced-project/src/__checks__/multi-step-spacex.check.ts +++ b/examples/advanced-project/src/__checks__/multi-step-spacex.check.ts @@ -18,4 +18,5 @@ new MultiStepCheck('spacex-multistep-check', { code: { entrypoint: path.join(__dirname, 'spacex-requests.spec.ts') }, + runParallel: true, }) diff --git a/examples/advanced-project/src/__checks__/website-group.check.ts b/examples/advanced-project/src/__checks__/website-group.check.ts index 3a300afd..844e40e5 100644 --- a/examples/advanced-project/src/__checks__/website-group.check.ts +++ b/examples/advanced-project/src/__checks__/website-group.check.ts @@ -31,4 +31,5 @@ export const websiteGroup = new CheckGroup('website-check-group-1', { * The wait time between retries will increase linearly: 30 seconds, 60 seconds, and then 90 seconds between the retries. */ retryStrategy: RetryStrategyBuilder.linearStrategy({ baseBackoffSeconds: 30, maxRetries: 3, sameRegion: false }), + runParallel: true, }) diff --git a/examples/boilerplate-project-js/__checks__/api.check.js b/examples/boilerplate-project-js/__checks__/api.check.js index ac88da4c..1f399102 100644 --- a/examples/boilerplate-project-js/__checks__/api.check.js +++ b/examples/boilerplate-project-js/__checks__/api.check.js @@ -15,4 +15,5 @@ new ApiCheck("books-api-check-1", { AssertionBuilder.jsonBody("$[0].id").isNotNull(), ], }, + runParallel: true, }); diff --git a/examples/boilerplate-project/__checks__/api.check.ts b/examples/boilerplate-project/__checks__/api.check.ts index dc0e932e..626c42f5 100644 --- a/examples/boilerplate-project/__checks__/api.check.ts +++ b/examples/boilerplate-project/__checks__/api.check.ts @@ -14,5 +14,6 @@ new ApiCheck('books-api-check-1', { AssertionBuilder.statusCode().equals(200), AssertionBuilder.jsonBody('$[0].id').isNotNull(), ], - } + }, + runParallel: true, })