From d72ea1957c293ed59705571ab5f3d6c8653c4145 Mon Sep 17 00:00:00 2001 From: Dariusz Czajkowski Date: Tue, 22 Nov 2022 13:14:22 +0100 Subject: [PATCH 1/2] fix: A docblock pointing to a non-existent online tool --- cli/types/cypress.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/types/cypress.d.ts b/cli/types/cypress.d.ts index 50392ceb8154..853590469af0 100644 --- a/cli/types/cypress.d.ts +++ b/cli/types/cypress.d.ts @@ -2695,7 +2695,7 @@ declare namespace Cypress { */ env: { [key: string]: any } /** - * A String or Array of glob patterns used to ignore test files that would otherwise be shown in your list of tests. Cypress uses minimatch with the options: {dot: true, matchBase: true}. We suggest using http://globtester.com to test what files would match. + * A String or Array of glob patterns used to ignore test files that would otherwise be shown in your list of tests. Cypress uses minimatch with the options: {dot: true, matchBase: true}. We suggest using https://toools.cloud/miscellaneous/glob-tester to test what files would match. * @default "*.hot-update.js" */ excludeSpecPattern: string | string[] From 26f2da6f8d45b34886113730b6cbfdcd7356f0a3 Mon Sep 17 00:00:00 2001 From: Ben M Date: Tue, 22 Nov 2022 14:24:05 -0500 Subject: [PATCH 2/2] Update cli/types/cypress.d.ts --- cli/types/cypress.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/types/cypress.d.ts b/cli/types/cypress.d.ts index 853590469af0..16202c844a95 100644 --- a/cli/types/cypress.d.ts +++ b/cli/types/cypress.d.ts @@ -2695,7 +2695,7 @@ declare namespace Cypress { */ env: { [key: string]: any } /** - * A String or Array of glob patterns used to ignore test files that would otherwise be shown in your list of tests. Cypress uses minimatch with the options: {dot: true, matchBase: true}. We suggest using https://toools.cloud/miscellaneous/glob-tester to test what files would match. + * A String or Array of glob patterns used to ignore test files that would otherwise be shown in your list of tests. Cypress uses minimatch with the options: {dot: true, matchBase: true}. We suggest using a tool to test what files would match. * @default "*.hot-update.js" */ excludeSpecPattern: string | string[]