diff --git a/examples/advanced-project-js/checkly.config.js b/examples/advanced-project-js/checkly.config.js index 05cd7f79..befbcbed 100644 --- a/examples/advanced-project-js/checkly.config.js +++ b/examples/advanced-project-js/checkly.config.js @@ -49,6 +49,8 @@ const config = defineConfig({ runLocation: 'eu-west-1', /* An array of default reporters to use when a reporter is not specified with the "--reporter" flag */ reporters: ['list'], + /* How many times to retry a failing test run when running `npx checkly test` or `npx checkly trigger` (max. 3) */ + retries: 0, }, }); diff --git a/examples/advanced-project/checkly.config.ts b/examples/advanced-project/checkly.config.ts index 75ced5eb..83f7fa71 100644 --- a/examples/advanced-project/checkly.config.ts +++ b/examples/advanced-project/checkly.config.ts @@ -51,6 +51,8 @@ const config = defineConfig({ runLocation: 'eu-west-1', /* An array of default reporters to use when a reporter is not specified with the "--reporter" flag */ reporters: ['list'], + /* How many times to retry a failing test run when running `npx checkly test` or `npx checkly trigger` (max. 3) */ + retries: 0, }, }) diff --git a/examples/boilerplate-project-js/checkly.config.js b/examples/boilerplate-project-js/checkly.config.js index aa0d7a07..ccf8aadf 100644 --- a/examples/boilerplate-project-js/checkly.config.js +++ b/examples/boilerplate-project-js/checkly.config.js @@ -40,6 +40,8 @@ const config = defineConfig({ runLocation: 'eu-west-1', /* An array of default reporters to use when a reporter is not specified with the "--reporter" flag */ reporters: ['list'], + /* How many times to retry a failing test run when running `npx checkly test` or `npx checkly trigger` (max. 3) */ + retries: 0, }, }) diff --git a/examples/boilerplate-project/checkly.config.ts b/examples/boilerplate-project/checkly.config.ts index 26155a67..be10dada 100644 --- a/examples/boilerplate-project/checkly.config.ts +++ b/examples/boilerplate-project/checkly.config.ts @@ -40,6 +40,8 @@ const config = defineConfig({ runLocation: 'eu-west-1', /* An array of default reporters to use when a reporter is not specified with the "--reporter" flag */ reporters: ['list'], + /* How many times to retry a failing test run when running `npx checkly test` or `npx checkly trigger` (max. 3) */ + retries: 0, }, })