diff --git a/cypress/_examples/utilities.spec.js b/cypress/_examples/utilities.spec.js index 9a52cb414..743fde178 100644 --- a/cypress/_examples/utilities.spec.js +++ b/cypress/_examples/utilities.spec.js @@ -58,7 +58,7 @@ context('Utilities', () => { }) expect(matching, 'comments').to.be.false - // ** matches against all downstream path segments + // matches against all downstream path segments matching = Cypress.minimatch('/foo/bar/baz/123/quux?a=b&c=2', '/foo/**', { matchBase: true, }) diff --git a/cypress/plugins/index.js b/cypress/plugins/index.js index 7d9ae3d2c..98a7421ae 100644 --- a/cypress/plugins/index.js +++ b/cypress/plugins/index.js @@ -1,12 +1,12 @@ -// *********************************************************** -// This example plugins/index.js can be used to load plugins -// -// You can change the location of this file or turn off loading -// the plugins file with the 'pluginsFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/plugins-guide -// *********************************************************** +/* +This example plugins/index.js can be used to load plugins + +You can change the location of this file or turn off loading +the plugins file with the 'pluginsFile' configuration option. + +You can read more here: +https://on.cypress.io/plugins-guide +*/ // This function is called when a project is opened or re-opened (e.g. due to // the project's config changing) diff --git a/cypress/support/commands.js b/cypress/support/commands.js index 6d46eb582..256e713b6 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -1,12 +1,12 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** +/* +This example commands.js shows you how to +create various custom commands and overwrite +existing commands. + +For more comprehensive examples of custom +commands please read more here: +https://on.cypress.io/custom-commands +*/ import { CYPRESS_WINDOW_NS } from '../../src/utils/testing/cypress'; diff --git a/cypress/support/index.js b/cypress/support/index.js index 848039c7c..a84f64414 100644 --- a/cypress/support/index.js +++ b/cypress/support/index.js @@ -1,17 +1,17 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** +/* +This example support/index.js is processed and +loaded automatically before your test files. + +This is a great place to put global configuration and +behavior that modifies Cypress. + +You can change the location of this file or turn off +automatically serving support files with the +'supportFile' configuration option. + +You can read more here: +https://on.cypress.io/configuration + */ // See https://dev.to/cuichenli/how-do-i-setup-my-nextjs-development-environment-2kao import '@cypress/react/support';