cypress 10.3.1 → 10.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. package/angular/CHANGELOG.md +55 -0
  2. package/angular/README.md +154 -0
  3. package/angular/dist/index.d.ts +1 -0
  4. package/angular/dist/index.js +263 -0
  5. package/angular/dist/mount.d.ts +111 -0
  6. package/angular/package.json +70 -0
  7. package/lib/exec/open.js +6 -0
  8. package/lib/tasks/download.js +4 -3
  9. package/mount-utils/CHANGELOG.md +7 -1
  10. package/mount-utils/README.md +7 -0
  11. package/package.json +16 -5
  12. package/react/CHANGELOG.md +20 -19
  13. package/react/README.md +28 -323
  14. package/react/dist/createMount.d.ts +28 -0
  15. package/react/dist/cypress-react.cjs.js +627 -98
  16. package/react/dist/cypress-react.esm-bundler.js +624 -99
  17. package/react/dist/getDisplayName.d.ts +1 -1
  18. package/react/dist/index.d.ts +2 -0
  19. package/react/dist/mount.d.ts +5 -141
  20. package/react/dist/types.d.ts +44 -0
  21. package/react/package.json +3 -5
  22. package/react18/CHANGELOG.md +13 -0
  23. package/react18/dist/cypress-react.cjs.js +633 -0
  24. package/react18/dist/cypress-react.esm-bundler.js +605 -0
  25. package/react18/dist/index.d.ts +5 -0
  26. package/react18/package.json +59 -0
  27. package/types/cypress.d.ts +28 -2
  28. package/types/index.d.ts +1 -1
  29. package/types/{net-stubbing.ts → net-stubbing.d.ts} +0 -0
  30. package/vue/CHANGELOG.md +16 -17
  31. package/vue/README.md +17 -608
  32. package/vue/dist/@vue/test-utils/baseWrapper.d.ts +3 -1
  33. package/vue/dist/@vue/test-utils/config.d.ts +4 -2
  34. package/vue/dist/@vue/test-utils/emit.d.ts +1 -0
  35. package/vue/dist/@vue/test-utils/index.d.ts +2 -1
  36. package/vue/dist/@vue/test-utils/interfaces/wrapperLike.d.ts +2 -2
  37. package/vue/dist/@vue/test-utils/mount.d.ts +2 -0
  38. package/vue/dist/@vue/test-utils/stubs.d.ts +2 -6
  39. package/vue/dist/@vue/test-utils/types.d.ts +1 -1
  40. package/vue/dist/@vue/test-utils/vueWrapper.d.ts +2 -1
  41. package/vue/dist/cypress-vue.cjs.js +5379 -5090
  42. package/vue/dist/cypress-vue.esm-bundler.js +5380 -5091
  43. package/vue/dist/index.d.ts +1 -0
  44. package/vue/package.json +2 -3
  45. package/vue2/CHANGELOG.md +7 -0
  46. package/vue2/README.md +11 -627
  47. package/vue2/dist/cypress-vue2.browser.js +251 -260
  48. package/vue2/dist/cypress-vue2.cjs.js +250 -259
  49. package/vue2/dist/cypress-vue2.esm-bundler.js +248 -257
  50. package/react/dist/cypress-react.browser.js +0 -512
@@ -29,6 +29,7 @@ declare const VueTestUtils: {
29
29
  }>;
30
30
  VueWrapper: typeof VueWrapper;
31
31
  DOMWrapper: typeof _VueTestUtils.DOMWrapper;
32
+ BaseWrapper: typeof _VueTestUtils.BaseWrapper;
32
33
  config: import("./@vue/test-utils/config").GlobalConfigOptions;
33
34
  flushPromises: typeof _VueTestUtils.flushPromises;
34
35
  createWrapperError: typeof _VueTestUtils.createWrapperError;
package/vue/package.json CHANGED
@@ -15,13 +15,12 @@
15
15
  "watch": "yarn build --watch --watch.exclude ./dist/**/*"
16
16
  },
17
17
  "devDependencies": {
18
- "@cypress/code-coverage": "3.8.1",
19
18
  "@cypress/mount-utils": "0.0.0-development",
20
19
  "@rollup/plugin-commonjs": "^17.1.0",
21
20
  "@rollup/plugin-node-resolve": "^11.1.1",
22
21
  "@vitejs/plugin-vue": "2.3.1",
23
22
  "@vue/compiler-sfc": "3.2.31",
24
- "@vue/test-utils": "2.0.0-rc.19",
23
+ "@vue/test-utils": "2.0.2",
25
24
  "axios": "0.21.2",
26
25
  "cypress": "0.0.0-development",
27
26
  "debug": "^4.3.2",
@@ -31,7 +30,7 @@
31
30
  "rollup-plugin-typescript2": "^0.29.0",
32
31
  "tailwindcss": "1.1.4",
33
32
  "typescript": "^4.2.3",
34
- "vite": "2.9.5",
33
+ "vite": "3.0.3",
35
34
  "vue": "3.2.31",
36
35
  "vue-i18n": "9.0.0-rc.6",
37
36
  "vue-router": "^4.0.0",
package/vue2/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [@cypress/vue2-v1.0.2](https://github.com/cypress-io/cypress/compare/@cypress/vue2-v1.0.1...@cypress/vue2-v1.0.2) (2022-08-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove CT side effects from mount when e2e testing ([#22633](https://github.com/cypress-io/cypress/issues/22633)) ([a9476ec](https://github.com/cypress-io/cypress/commit/a9476ecb3d43f628b689e060294a1952937cb1a7))
7
+
1
8
  # [@cypress/vue2-v1.0.1](https://github.com/cypress-io/cypress/compare/@cypress/vue2-v1.0.0...@cypress/vue2-v1.0.1) (2022-06-13)
2
9
 
3
10