From ec017745c1062a36adc2f81bf66449460d64c231 Mon Sep 17 00:00:00 2001 From: Dariusz Czajkowski Date: Tue, 22 Nov 2022 20:24:24 +0100 Subject: [PATCH] fix: A docblock pointing to a non-existent online tool (#24771) * fix: A docblock pointing to a non-existent online tool * Update cli/types/cypress.d.ts Co-authored-by: Ben M --- 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..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 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 a tool to test what files would match. * @default "*.hot-update.js" */ excludeSpecPattern: string | string[]