Skip to content

Commit 2fc5bde

Browse files
Fix doc URL (checkly#972)
1 parent 43bf5ac commit 2fc5bde

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/advanced-project-js/checkly.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const config = defineConfig({
2929
retryStrategy: RetryStrategyBuilder.fixedStrategy({ baseBackoffSeconds: 60, maxRetries: 4, sameRegion: true }),
3030
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */
3131
checkMatch: '**/__checks__/**/*.check.js',
32-
/* Global configuration option for Playwright-powered checks. See https://docs/browser-checks/playwright-test/#global-configuration */
32+
/* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */
3333
playwrightConfig: {
3434
timeout: 30000,
3535
use: {

examples/advanced-project/checkly.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const config = defineConfig({
3131
alertEscalationPolicy: AlertEscalationBuilder.runBasedEscalation(1),
3232
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */
3333
checkMatch: '**/__checks__/**/*.check.ts',
34-
/* Global configuration option for Playwright-powered checks. See https://docs/browser-checks/playwright-test/#global-configuration */
34+
/* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */
3535
playwrightConfig: {
3636
timeout: 30000,
3737
use: {

examples/boilerplate-project-js/checkly.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const config = defineConfig({
2626
runtimeId: '2024.02',
2727
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */
2828
checkMatch: '**/__checks__/**/*.check.js',
29-
/* Global configuration option for Playwright-powered checks. See https://docs/browser-checks/playwright-test/#global-configuration */
29+
/* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */
3030
playwrightConfig: {},
3131
browserChecks: {
3232
/* A glob pattern matches any Playwright .spec.js files and automagically creates a Browser Check. This way, you

examples/boilerplate-project/checkly.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const config = defineConfig({
2626
runtimeId: '2024.02',
2727
/* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */
2828
checkMatch: '**/__checks__/**/*.check.ts',
29-
/* Global configuration option for Playwright-powered checks. See https://docs/browser-checks/playwright-test/#global-configuration */
29+
/* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */
3030
playwrightConfig: {},
3131
browserChecks: {
3232
/* A glob pattern matches any Playwright .spec.ts files and automagically creates a Browser Check. This way, you

0 commit comments

Comments
 (0)