cypress-fail-on-network-error 1.0.3 → 1.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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # cypress-fail-on-network-error
2
2
 
3
- This Plugin observes network requests through cypress network events. Cypress test will fail when the error conditions are met. For observing `console.error()` please check out [cypress-fail-on-console-error](https://www.npmjs.com/package/cypress-fail-on-console-error).
3
+ > :fire: **Don´t be shy and give it a try.** This plugin is brand new! :fire:
4
+
5
+ The plugin observes all network requests from your configuration. Cypress test will fail when the error conditions are met. For observing `console.error()` please check out [cypress-fail-on-console-error](https://www.npmjs.com/package/cypress-fail-on-console-error).
4
6
 
5
7
  ### Installation
6
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress-fail-on-network-error",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "fail cypress test on network error",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -46,20 +46,20 @@
46
46
  "type-detect": "^4.0.8"
47
47
  },
48
48
  "devDependencies": {
49
- "@types/chai": "4.3.11",
49
+ "@types/chai": "4.3.14",
50
50
  "@types/expect": "24.3.0",
51
51
  "@types/mocha": "10.0.6",
52
52
  "@types/type-detect": "4.0.3",
53
53
  "cors": "2.8.5",
54
- "cypress": "13.6.2",
55
- "express": "4.18.1",
56
- "mocha": "10.2.0",
57
- "nodemon": "3.0.2",
58
- "prettier": "3.1.1",
54
+ "cypress": "13.7.3",
55
+ "express": "4.19.2",
56
+ "mocha": "10.4.0",
57
+ "nodemon": "3.1.0",
58
+ "prettier": "3.2.5",
59
59
  "prettier-plugin-organize-imports": "3.2.4",
60
60
  "rimraf": "5.0.5",
61
61
  "ts-mocha": "10.0.0",
62
62
  "ts-node": "^10.9.1",
63
- "typescript": "5.2.2"
63
+ "typescript": "5.4.5"
64
64
  }
65
65
  }