From 2fc5bde0d4b64923960cd7af95081f42d1658db0 Mon Sep 17 00:00:00 2001 From: Matthias Gubler Date: Thu, 28 Nov 2024 06:10:57 -0600 Subject: [PATCH] Fix doc URL (#972) --- examples/advanced-project-js/checkly.config.js | 2 +- examples/advanced-project/checkly.config.ts | 2 +- examples/boilerplate-project-js/checkly.config.js | 2 +- examples/boilerplate-project/checkly.config.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/advanced-project-js/checkly.config.js b/examples/advanced-project-js/checkly.config.js index befbcbed..5f9dac06 100644 --- a/examples/advanced-project-js/checkly.config.js +++ b/examples/advanced-project-js/checkly.config.js @@ -29,7 +29,7 @@ const config = defineConfig({ retryStrategy: RetryStrategyBuilder.fixedStrategy({ baseBackoffSeconds: 60, maxRetries: 4, sameRegion: true }), /* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */ checkMatch: '**/__checks__/**/*.check.js', - /* Global configuration option for Playwright-powered checks. See https://docs/browser-checks/playwright-test/#global-configuration */ + /* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */ playwrightConfig: { timeout: 30000, use: { diff --git a/examples/advanced-project/checkly.config.ts b/examples/advanced-project/checkly.config.ts index 83f7fa71..1124ac22 100644 --- a/examples/advanced-project/checkly.config.ts +++ b/examples/advanced-project/checkly.config.ts @@ -31,7 +31,7 @@ const config = defineConfig({ alertEscalationPolicy: AlertEscalationBuilder.runBasedEscalation(1), /* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */ checkMatch: '**/__checks__/**/*.check.ts', - /* Global configuration option for Playwright-powered checks. See https://docs/browser-checks/playwright-test/#global-configuration */ + /* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */ playwrightConfig: { timeout: 30000, use: { diff --git a/examples/boilerplate-project-js/checkly.config.js b/examples/boilerplate-project-js/checkly.config.js index ccf8aadf..8a8da4b5 100644 --- a/examples/boilerplate-project-js/checkly.config.js +++ b/examples/boilerplate-project-js/checkly.config.js @@ -26,7 +26,7 @@ const config = defineConfig({ runtimeId: '2024.02', /* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */ checkMatch: '**/__checks__/**/*.check.js', - /* Global configuration option for Playwright-powered checks. See https://docs/browser-checks/playwright-test/#global-configuration */ + /* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */ playwrightConfig: {}, browserChecks: { /* A glob pattern matches any Playwright .spec.js files and automagically creates a Browser Check. This way, you diff --git a/examples/boilerplate-project/checkly.config.ts b/examples/boilerplate-project/checkly.config.ts index be10dada..941e95f7 100644 --- a/examples/boilerplate-project/checkly.config.ts +++ b/examples/boilerplate-project/checkly.config.ts @@ -26,7 +26,7 @@ const config = defineConfig({ runtimeId: '2024.02', /* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */ checkMatch: '**/__checks__/**/*.check.ts', - /* Global configuration option for Playwright-powered checks. See https://docs/browser-checks/playwright-test/#global-configuration */ + /* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */ playwrightConfig: {}, browserChecks: { /* A glob pattern matches any Playwright .spec.ts files and automagically creates a Browser Check. This way, you