@bahmutov/cy-grep 3.0.3 → 3.0.4

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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @bahmutov/cy-grep ![cypress version](https://img.shields.io/badge/cypress-15.12.0-brightgreen)
1
+ # @bahmutov/cy-grep ![cypress version](https://img.shields.io/badge/cypress-15.13.0-brightgreen)
2
2
 
3
3
  > Filter tests using substring or tag
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bahmutov/cy-grep",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "description": "Filter Cypress tests using title or tags",
5
5
  "main": "src/support.js",
6
6
  "scripts": {
@@ -23,7 +23,7 @@
23
23
  "minimatch": "^10.2.4"
24
24
  },
25
25
  "devDependencies": {
26
- "cypress": "15.12.0",
26
+ "cypress": "15.13.0",
27
27
  "cypress-each": "^1.11.0",
28
28
  "cypress-expect": "^3.1.0",
29
29
  "prettier": "^3.8.1",
package/src/support.js CHANGED
@@ -299,7 +299,6 @@ function registerCyGrep() {
299
299
  options = {}
300
300
  }
301
301
 
302
- debugger
303
302
  return _itOnly(name, options, callback)
304
303
  }
305
304