@bahmutov/cy-grep 2.0.0 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# @bahmutov/cy-grep ![cypress version](https://img.shields.io/badge/cypress-13.
|
1
|
+
# @bahmutov/cy-grep ![cypress version](https://img.shields.io/badge/cypress-13.17.0-brightgreen)
|
2
2
|
|
3
3
|
> Filter tests using substring or tag
|
4
4
|
|
@@ -33,6 +33,8 @@ Watch the video [intro to cypress-grep plugin](https://www.youtube.com/watch?v=H
|
|
33
33
|
- [Lesson k8: Automatically prefix tags with the "@" character](https://cypress.tips/courses/cypress-plugins/lessons/k8)
|
34
34
|
- [Lesson k9: Set baseUrl depending on the test tag](https://cypress.tips/courses/cypress-plugins/lessons/k9)
|
35
35
|
- [Lesson k10: Limit test tags to specific values](https://cypress.tips/courses/cypress-plugins/lessons/k10)
|
36
|
+
- [Lesson k11: Use TypeScript enum for test tags](https://cypress.tips/courses/cypress-plugins/lessons/k11)
|
37
|
+
- [Lesson k12: Validate user-supplied test tags](https://cypress.tips/courses/cypress-plugins/lessons/k12)
|
36
38
|
|
37
39
|
## Table of Contents
|
38
40
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bahmutov/cy-grep",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.2",
|
4
4
|
"description": "Filter Cypress tests using title or tags",
|
5
5
|
"main": "src/support.js",
|
6
6
|
"scripts": {
|
@@ -16,7 +16,7 @@
|
|
16
16
|
"cypress-plugin-config": "^1.2.0",
|
17
17
|
"debug": "^4.3.2",
|
18
18
|
"find-cypress-specs": "^1.35.1",
|
19
|
-
"find-test-names": "1.
|
19
|
+
"find-test-names": "1.29.1",
|
20
20
|
"globby": "^11.1.0"
|
21
21
|
},
|
22
22
|
"devDependencies": {
|