Skip to content

Commit

Permalink
feat: add test retries to examples
Browse files Browse the repository at this point in the history
  • Loading branch information
clample committed Jul 29, 2024
1 parent 469a09b commit aaa4e39
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/advanced-project-js/checkly.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
});

Expand Down
2 changes: 2 additions & 0 deletions examples/advanced-project/checkly.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
})

Expand Down
2 changes: 2 additions & 0 deletions examples/boilerplate-project-js/checkly.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
})

Expand Down
2 changes: 2 additions & 0 deletions examples/boilerplate-project/checkly.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
})

Expand Down

0 comments on commit aaa4e39

Please sign in to comment.