@bahmutov/cy-grep 2.0.1 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -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
 
@@ -757,6 +759,7 @@ To see how to debug this plugin, watch the video [Debug cypress-grep Plugin](htt
757
759
  - [cypress-select-tests](https://github.com/bahmutov/cypress-select-tests)
758
760
  - [cypress-skip-test](https://github.com/cypress-io/cypress-skip-test)
759
761
  - 📝 Read the blog post [Cypress GitHub Actions Slash Command](https://glebbahmutov.com/blog/cypress-slash-command/)
762
+ - 📝 Read the blog post [Type Check Your Test Tags](https://glebbahmutov.com/blog/type-check-test-tags/)
760
763
  - plugin [dennisbergevin/cypress-plugin-last-failed](https://github.com/dennisbergevin/cypress-plugin-last-failed)
761
764
 
762
765
  ## cy-grep vs cypress-grep vs @cypress/grep
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bahmutov/cy-grep",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
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.28.30",
19
+ "find-test-names": "1.29.2",
20
20
  "globby": "^11.1.0"
21
21
  },
22
22
  "devDependencies": {
@@ -24,7 +24,7 @@
24
24
  "cypress-each": "^1.11.0",
25
25
  "cypress-expect": "^3.1.0",
26
26
  "prettier": "^3.0.0",
27
- "semantic-release": "^24.2.0",
27
+ "semantic-release": "^24.2.1",
28
28
  "stop-only": "^3.3.1",
29
29
  "typescript": "^5.0.0"
30
30
  },