cypress-plugin-last-failed 2.0.4 → 2.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -46,7 +46,7 @@ npm install --save-dev cypress-plugin-last-failed
46
46
  2. In `cypress/support/e2e.js` (For E2E tests) and/or `cypress/support/component.js` (For Component tests),
47
47
 
48
48
  ```js
49
- import { failedTestToggle } from 'cypress-plugin-last-failed';
49
+ import failedTestToggle from 'cypress-plugin-last-failed/src/toggle';
50
50
 
51
51
  const registerCypressGrep = require('@bahmutov/cy-grep');
52
52
  registerCypressGrep();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress-plugin-last-failed",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "Cypress plugin to rerun last failed tests in cypress run and open mode",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "cypress-plugin"
19
19
  ],
20
20
  "devDependencies": {
21
- "@bahmutov/cy-grep": "^1.9.17",
21
+ "@bahmutov/cy-grep": "^2.0.22",
22
22
  "cypress": "^13.9.0"
23
23
  },
24
24
  "publishConfig": {