wick-dom-observer 1.0.1 → 1.0.2

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 +4 -0
  2. package/package.json +12 -1
package/README.md CHANGED
@@ -517,6 +517,10 @@ Useful when you only want to validate `clickAndWatchForElement()` behavior.
517
517
 
518
518
  ## Changelog
519
519
 
520
+ ### 1.0.2
521
+
522
+ - Add missing 'repository' property in package.json
523
+
520
524
  ### 1.0.1
521
525
 
522
526
  - Fix paths to image assets in readme.md
package/package.json CHANGED
@@ -1,18 +1,29 @@
1
1
  {
2
2
  "name": "wick-dom-observer",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A Cypress plugin that watches DOM changes after clicks to detect fast loading spinners and async UI transitions. It improves test reliability by waiting for real visual completion instead of fixed delays or intercepts.",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
7
7
  "keywords": [
8
8
  "cypress",
9
+ "plugin",
9
10
  "spinner",
11
+ "toast",
12
+ "modal",
10
13
  "loading",
11
14
  "custom-command",
12
15
  "testing"
13
16
  ],
14
17
  "author": "",
15
18
  "license": "MIT",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/sclavijosuero/wick-dom-observer.git"
22
+ },
23
+ "homepage": "https://github.com/sclavijosuero/wick-dom-observer#readme",
24
+ "bugs": {
25
+ "url": "https://github.com/sclavijosuero/wick-dom-observer/issues"
26
+ },
16
27
  "scripts": {
17
28
  "demo:serve": "serve cypress/public -p 3030",
18
29
  "cy:open": "start-server-and-test serve 3030 cypress:open",