diff --git a/npm/grep/README.md b/npm/grep/README.md index 9466d08098de..88f0dc9a3f12 100644 --- a/npm/grep/README.md +++ b/npm/grep/README.md @@ -85,11 +85,11 @@ yarn add -D @cypress/grep // cypress/support/index.js // load and register the grep feature using "require" function // https://github.com/cypress-io/cypress-grep -const registerCypressGrep = require('cypress-grep') +const registerCypressGrep = require('@cypress/grep') registerCypressGrep() // if you want to use the "import" keyword -import registerCypressGrep from 'cypress-grep' +import registerCypressGrep from '@cypress/grep' registerCypressGrep() ``` @@ -102,7 +102,7 @@ registerCypressGrep() { e2e: { setupNodeEvents(on, config) { - require('cypress-grep/src/plugin')(config); + require('@cypress/grep/src/plugin')(config); return config; }, }