cypress-fail-on-network-error 1.0.3 → 1.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.
- package/README.md +3 -1
- package/dist/index.d.ts +0 -4
- package/package.json +13 -14
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# cypress-fail-on-network-error
|
|
2
2
|
|
|
3
|
-
|
|
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/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cypress-fail-on-network-error",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "fail cypress test on network error",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -42,24 +42,23 @@
|
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://github.com/nils-hoyer/cypress-fail-on-network-error#readme",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"chai": "^
|
|
45
|
+
"chai": "^6.0.0",
|
|
46
46
|
"type-detect": "^4.0.8"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@types/chai": "
|
|
50
|
-
"@types/
|
|
51
|
-
"@types/mocha": "10.0.6",
|
|
49
|
+
"@types/chai": "5.2.3",
|
|
50
|
+
"@types/mocha": "10.0.10",
|
|
52
51
|
"@types/type-detect": "4.0.3",
|
|
53
52
|
"cors": "2.8.5",
|
|
54
|
-
"cypress": "
|
|
55
|
-
"express": "
|
|
56
|
-
"mocha": "
|
|
57
|
-
"nodemon": "3.
|
|
58
|
-
"prettier": "3.
|
|
59
|
-
"prettier-plugin-organize-imports": "3.
|
|
60
|
-
"rimraf": "
|
|
61
|
-
"ts-mocha": "
|
|
53
|
+
"cypress": "15.8.1",
|
|
54
|
+
"express": "5.2.1",
|
|
55
|
+
"mocha": "11.7.5",
|
|
56
|
+
"nodemon": "3.1.11",
|
|
57
|
+
"prettier": "3.7.4",
|
|
58
|
+
"prettier-plugin-organize-imports": "4.3.0",
|
|
59
|
+
"rimraf": "6.1.2",
|
|
60
|
+
"ts-mocha": "11.1.0",
|
|
62
61
|
"ts-node": "^10.9.1",
|
|
63
|
-
"typescript": "5.
|
|
62
|
+
"typescript": "5.9.3"
|
|
64
63
|
}
|
|
65
64
|
}
|