Replies: 1 comment
-
|
@jonasSel support file: // before (v4):
import registerCypressGrep from '@cypress/grep';
// after (v5):
import { register as registerCypressGrep } from '@cypress/grep';
registerCypressGrep();config file: // before (v4):
const cypressGrepPlugin = require('@cypress/grep/src/plugin');
// after (v5):
const { plugin: cypressGrepPlugin } = require('@cypress/grep/plugin');note the path also changed from |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi there,
I want to update cypress/grep to the newest 5.0.0 (currently on 4.1.0). But when I do it, it gives me the following error:
I have it in e2e.
import registerCypressGrep from '@cypress/grep'
registerCypressGrep();
current cypress version: 15.3.0
Beta Was this translation helpful? Give feedback.
All reactions