Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ local
**/checkly-summary.md
**/e2e/__tests__/fixtures/empty-project/e2e-test-project-*
CLAUDE.md
scripts/
4 changes: 2 additions & 2 deletions examples/advanced-project-js/checkly.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const config = defineConfig({
/* A default for how often your Check should run in minutes */
frequency: 10,
/* Checkly data centers to run your Checks as monitors */
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'eu-west-2'],
/* An optional array of tags to organize your Checks */
tags: ['mac'],
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
Expand Down Expand Up @@ -56,7 +56,7 @@ const config = defineConfig({
},
cli: {
/* The default datacenter location to use when running npx checkly test */
runLocation: 'eu-west-1',
runLocation: 'eu-west-2',
/* 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) */
Expand Down
4 changes: 2 additions & 2 deletions examples/advanced-project/checkly.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const config = defineConfig({
/* A default for how often your Check should run in minutes */
frequency: 10,
/* Checkly data centers to run your Checks as monitors */
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'eu-west-2'],
/* An optional array of tags to organize your Checks */
tags: ['mac'],
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
Expand Down Expand Up @@ -57,7 +57,7 @@ const config = defineConfig({
},
cli: {
/* The default datacenter location to use when running npx checkly test */
runLocation: 'eu-west-1',
runLocation: 'eu-west-2',
/* 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) */
Expand Down
4 changes: 2 additions & 2 deletions examples/boilerplate-project-js/checkly.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const config = defineConfig({
/* A default for how often your Check should run in minutes */
frequency: 10,
/* Checkly data centers to run your Checks as monitors */
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'eu-west-2'],
/* An optional array of tags to organize your Checks */
tags: ['mac'],
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
Expand Down Expand Up @@ -52,7 +52,7 @@ const config = defineConfig({
},
cli: {
/* The default datacenter location to use when running npx checkly test */
runLocation: 'eu-west-1',
runLocation: 'eu-west-2',
/* 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) */
Expand Down
4 changes: 2 additions & 2 deletions examples/boilerplate-project/checkly.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const config = defineConfig({
/* A default for how often your Check should run in minutes */
frequency: 10,
/* Checkly data centers to run your Checks as monitors */
locations: ['us-east-1', 'eu-west-1'],
locations: ['us-east-1', 'eu-west-2'],
/* An optional array of tags to organize your Checks */
tags: ['mac'],
/** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime.
Expand Down Expand Up @@ -52,7 +52,7 @@ const config = defineConfig({
},
cli: {
/* The default datacenter location to use when running npx checkly test */
runLocation: 'eu-west-1',
runLocation: 'eu-west-2',
/* 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) */
Expand Down
Loading