From 1b4ff4721cffd72a15e5858b5cf4ad3b840aeff9 Mon Sep 17 00:00:00 2001 From: Dariusz Czajkowski Date: Tue, 22 Nov 2022 13:14:22 +0100 Subject: [PATCH] Changed non-existent globtester.com with other online tool for glob matching --- 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[]