diff --git a/.gitignore b/.gitignore index 29e05c76..cb767b94 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ local **/checkly-summary.md **/e2e/__tests__/fixtures/empty-project/e2e-test-project-* CLAUDE.md +scripts/ diff --git a/examples/advanced-project-js/checkly.config.js b/examples/advanced-project-js/checkly.config.js index 16ca06ad..8d89ff9b 100644 --- a/examples/advanced-project-js/checkly.config.js +++ b/examples/advanced-project-js/checkly.config.js @@ -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. @@ -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) */ diff --git a/examples/advanced-project/checkly.config.ts b/examples/advanced-project/checkly.config.ts index 061d2586..f3a6f8a3 100644 --- a/examples/advanced-project/checkly.config.ts +++ b/examples/advanced-project/checkly.config.ts @@ -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. @@ -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) */ diff --git a/examples/boilerplate-project-js/checkly.config.js b/examples/boilerplate-project-js/checkly.config.js index 96a8c623..67619abe 100644 --- a/examples/boilerplate-project-js/checkly.config.js +++ b/examples/boilerplate-project-js/checkly.config.js @@ -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. @@ -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) */ diff --git a/examples/boilerplate-project/checkly.config.ts b/examples/boilerplate-project/checkly.config.ts index 78f52dff..f4236ef0 100644 --- a/examples/boilerplate-project/checkly.config.ts +++ b/examples/boilerplate-project/checkly.config.ts @@ -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. @@ -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) */