@testspectra/cli 1.1.8-rc.2 → 1.1.8-rc.20

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 (205) hide show
  1. package/README.md +47 -0
  2. package/bin/spectra.js +0 -0
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/commands/__tests__/run-e2e.test.js +49 -49
  5. package/dist/commands/add.js +2 -1
  6. package/dist/commands/devices.js +1 -0
  7. package/dist/commands/doctor.js +1 -0
  8. package/dist/commands/init.js +150 -149
  9. package/dist/commands/install.js +2 -0
  10. package/dist/commands/license.js +1 -0
  11. package/dist/commands/test.js +5 -3
  12. package/dist/generator/__tests__/tsconfig-isolation.test.js +2 -1
  13. package/dist/generator/__tests__/type-generator.test.js +38 -0
  14. package/dist/generator/tsconfig-generator.js +1 -1
  15. package/dist/generator/type-generator.d.ts +5 -2
  16. package/dist/generator/type-generator.js +14 -17
  17. package/dist/index.js +11 -11
  18. package/dist/linter/__tests__/component-test-imports.test.js +51 -51
  19. package/dist/linter/__tests__/shared-lib-boundary.test.js +15 -15
  20. package/dist/linter/__tests__/spec-schema.test.js +167 -167
  21. package/dist/linter/discovery.d.ts +3 -3
  22. package/dist/linter/discovery.js +5 -5
  23. package/dist/linter/schemas/spec.schema.d.ts +2 -2
  24. package/dist/linter/schemas/suite.schema.d.ts +4 -4
  25. package/dist/runner/bridge.js +53 -4
  26. package/package.json +34 -29
  27. package/templates/default/CLAUDE.md +16 -16
  28. package/templates/default/global-hooks/after/mobile.hook.ts +3 -3
  29. package/templates/default/global-hooks/after/web.hook.ts +3 -3
  30. package/templates/default/global-hooks/before/mobile.hook.ts +3 -3
  31. package/templates/default/global-hooks/before/web.hook.ts +3 -3
  32. package/templates/default/package.json +2 -2
  33. package/templates/default/page-objects/AuthPage/mobile.ts +5 -5
  34. package/templates/default/page-objects/AuthPage/web.ts +10 -10
  35. package/templates/default/page-objects/MatchersPage/mobile.ts +70 -70
  36. package/templates/default/page-objects/MatchersPage/web.ts +43 -43
  37. package/templates/default/page-objects/NavigationPage/mobile.ts +14 -14
  38. package/templates/default/page-objects/NavigationPage/web.ts +8 -8
  39. package/templates/default/page-objects/PlaygroundPage/mobile.ts +42 -42
  40. package/templates/default/page-objects/PlaygroundPage/web.ts +31 -31
  41. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +53 -53
  42. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +19 -19
  43. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +31 -31
  44. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/android.test.ts +3 -3
  45. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/common.test.ts +3 -3
  46. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +27 -27
  47. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +19 -19
  48. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +26 -26
  49. package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/common.test.ts +30 -30
  50. package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/spec.md +22 -22
  51. package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/common.test.ts +27 -27
  52. package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/spec.md +20 -20
  53. package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/spec.md +24 -24
  54. package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/web.test.ts +26 -26
  55. package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/spec.md +37 -37
  56. package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/web.test.ts +21 -21
  57. package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/spec.md +29 -29
  58. package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/web.test.ts +16 -16
  59. package/templates/default/specs/ApiInterception/suite.md +10 -10
  60. package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/common.test.ts +30 -30
  61. package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/spec.md +23 -23
  62. package/templates/default/specs/ApiSeeding/hooks/after/common.hook.ts +16 -16
  63. package/templates/default/specs/ApiSeeding/hooks/before/common.hook.ts +28 -28
  64. package/templates/default/specs/ApiSeeding/suite.md +9 -9
  65. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/mobile.test.ts +7 -7
  66. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/spec.md +19 -19
  67. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/web.test.ts +9 -9
  68. package/templates/default/specs/Authentication/suite.md +9 -9
  69. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +9 -9
  70. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/spec.md +17 -17
  71. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
  72. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/mobile.test.ts +17 -17
  73. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/spec.md +28 -28
  74. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/web.test.ts +26 -26
  75. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/common.test.ts +26 -26
  76. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/spec.md +19 -19
  77. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +11 -11
  78. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md +17 -17
  79. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
  80. package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/common.test.ts +14 -14
  81. package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/spec.md +21 -21
  82. package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/mobile.test.ts +28 -28
  83. package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/spec.md +29 -29
  84. package/templates/default/specs/DeepLink/suite.md +9 -9
  85. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +11 -11
  86. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md +17 -17
  87. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
  88. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +29 -29
  89. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md +19 -19
  90. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
  91. package/templates/default/specs/ElementMatchers/suite.md +10 -10
  92. package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -5
  93. package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
  94. package/templates/default/specs/EnvironmentConfig/suite.md +9 -9
  95. package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/mobile.test.ts +26 -26
  96. package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/spec.md +22 -22
  97. package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/mobile.test.ts +13 -13
  98. package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/spec.md +20 -20
  99. package/templates/default/specs/PermissionRationale/suite.md +9 -9
  100. package/templates/default/specs/Playground/TC-0001-form-controls/mobile.test.ts +6 -6
  101. package/templates/default/specs/Playground/TC-0001-form-controls/spec.md +18 -18
  102. package/templates/default/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
  103. package/templates/default/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +6 -6
  104. package/templates/default/specs/Playground/TC-0002-toggle-elements/spec.md +18 -18
  105. package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
  106. package/templates/default/spectra.config.ts +52 -52
  107. package/templates/default/support/actions/fillCredentials/mobile.action.ts +4 -4
  108. package/templates/default/support/actions/fillCredentials/web.action.ts +4 -4
  109. package/templates/default/support/actions/seedSession/mobile.action.ts +9 -9
  110. package/templates/default/support/actions/seedSession/web.action.ts +13 -13
  111. package/templates/default/support/steps/togglePlaygroundStates/mobile.step.ts +5 -5
  112. package/templates/default/support/steps/togglePlaygroundStates/web.step.ts +5 -5
  113. package/templates/default/support/steps/verifyPlaygroundState/mobile.step.ts +6 -6
  114. package/templates/default/support/steps/verifyPlaygroundState/web.step.ts +6 -6
  115. package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db-shm → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db-shm} +0 -0
  116. package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-wal +0 -0
  117. package/templates/nx/.nx/workspace-data/d/daemon.log +6269 -1577
  118. package/templates/nx/.nx/workspace-data/file-map.json +129 -129
  119. package/templates/nx/.nx/workspace-data/lockfile.hash +1 -1
  120. package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
  121. package/templates/nx/.nx/workspace-data/parsed-lock-file.json +535 -535
  122. package/templates/nx/.nx/workspace-data/project-graph.json +589 -590
  123. package/templates/nx/CLAUDE.md +10 -10
  124. package/templates/nx/package.json +2 -2
  125. package/templates/nx/packages/matchers/e2e/project.json +2 -2
  126. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +27 -27
  127. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -27
  128. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +24 -24
  129. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -24
  130. package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +3 -3
  131. package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
  132. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +3 -3
  133. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +17 -17
  134. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +3 -3
  135. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
  136. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +3 -3
  137. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
  138. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +3 -3
  139. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
  140. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -5
  141. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
  142. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/suite.md +9 -9
  143. package/templates/nx/packages/playground/e2e/project.json +2 -2
  144. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts +3 -3
  145. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
  146. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +3 -3
  147. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
  148. package/templates/nx/pnpm-lock.yaml +6663 -6663
  149. package/templates/nx/pnpm-workspace.yaml +9 -9
  150. package/templates/nx/shared/testing/page-objects/MatchersPage/mobile.ts +33 -33
  151. package/templates/nx/shared/testing/page-objects/MatchersPage/web.ts +91 -91
  152. package/templates/nx/shared/testing/page-objects/NavigationPage/mobile.ts +5 -5
  153. package/templates/nx/shared/testing/page-objects/NavigationPage/web.ts +8 -8
  154. package/templates/nx/shared/testing/page-objects/PlaygroundPage/mobile.ts +26 -26
  155. package/templates/nx/shared/testing/page-objects/PlaygroundPage/web.ts +31 -31
  156. package/templates/nx/shared/testing/project.json +18 -19
  157. package/templates/nx/shared/testing/support/actions/fillCredentials/mobile.action.ts +4 -4
  158. package/templates/nx/shared/testing/support/actions/fillCredentials/web.action.ts +4 -4
  159. package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts +3 -3
  160. package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/web.step.ts +5 -5
  161. package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts +4 -4
  162. package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/web.step.ts +6 -6
  163. package/templates/nx/spectra.config.ts +52 -52
  164. package/templates/react-component/.cursorrules +17 -17
  165. package/templates/react-component/.vscode/extensions.json +5 -5
  166. package/templates/react-component/CLAUDE.md +14 -14
  167. package/templates/react-component/README.md +69 -69
  168. package/templates/react-component/fixtures/component-mock.json +12 -12
  169. package/templates/react-component/global-hooks/after/web.hook.ts +3 -3
  170. package/templates/react-component/global-hooks/before/web.hook.ts +3 -3
  171. package/templates/react-component/package.json +27 -27
  172. package/templates/react-component/page-objects/BadgeComponent/web.ts +23 -23
  173. package/templates/react-component/page-objects/ButtonComponent/web.ts +23 -23
  174. package/templates/react-component/page-objects/InputComponent/web.ts +13 -13
  175. package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/spec.md +18 -18
  176. package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/web.test.tsx +11 -11
  177. package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/spec.md +18 -18
  178. package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/web.test.tsx +10 -10
  179. package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/spec.md +18 -18
  180. package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/web.test.tsx +16 -16
  181. package/templates/react-component/specs/BadgeComponent/suite.md +12 -12
  182. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/spec.md +19 -19
  183. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +28 -28
  184. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/spec.md +19 -19
  185. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +22 -22
  186. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/spec.md +18 -18
  187. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +8 -8
  188. package/templates/react-component/specs/ButtonComponent/suite.md +12 -12
  189. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/spec.md +20 -20
  190. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +28 -28
  191. package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/spec.md +18 -18
  192. package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/web.test.tsx +9 -9
  193. package/templates/react-component/specs/InputComponent/suite.md +12 -12
  194. package/templates/react-component/spectra.config.ts +27 -27
  195. package/templates/react-component/src/components/Badge/Badge.tsx +60 -60
  196. package/templates/react-component/src/components/Button/Button.tsx +57 -57
  197. package/templates/react-component/src/components/Input/Input.tsx +41 -41
  198. package/templates/react-component/src/test-utils.tsx +23 -23
  199. package/templates/react-component/support/actions/fillInputField/web.action.ts +9 -9
  200. package/templates/react-component/support/steps/verifyButtonState/web.step.ts +12 -12
  201. package/bin/.testspectra-runner.hash +0 -1
  202. package/bin/testspectra-runner.exe +0 -0
  203. package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db-wal +0 -0
  204. package/templates/nx/.nx/workspace-data/d/server-process.json +0 -3
  205. /package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db} +0 -0
@@ -2,8 +2,8 @@
2
2
  "version": "6.0",
3
3
  "nxVersion": "19.8.4",
4
4
  "deps": {
5
- "@testspectra/cli": "^1.1.8-rc.2",
6
- "@testspectra/matchers": "^1.1.8-rc.2",
5
+ "@testspectra/cli": "link:../..",
6
+ "@testspectra/matchers": "link:../../../tools/matchers",
7
7
  "@types/node": "^20.14.0",
8
8
  "@wdio/cli": "^9.2.8",
9
9
  "@wdio/local-runner": "^9.2.8",
@@ -19,56 +19,142 @@
19
19
  "nxJsonPlugins": [],
20
20
  "fileMap": {
21
21
  "nonProjectFiles": [
22
- {
23
- "file": "CLAUDE.md",
24
- "hash": "17568546063110469421"
25
- },
26
- {
27
- "file": "spectra.config.ts",
28
- "hash": "15760368716233691427"
29
- },
30
22
  {
31
23
  "file": "pnpm-lock.yaml",
32
- "hash": "6031117101426621083"
24
+ "hash": "5459540818199025768"
33
25
  },
34
26
  {
35
27
  "file": ".vscode/extensions.json",
36
28
  "hash": "6496079274348496909"
37
29
  },
38
30
  {
39
- "file": ".cursorrules",
40
- "hash": "5914400097935294858"
31
+ "file": "spectra.config.ts",
32
+ "hash": "5826567216431235375"
41
33
  },
42
34
  {
43
- "file": "package.json",
44
- "hash": "1462196114389718311"
35
+ "file": ".cursorrules",
36
+ "hash": "5914400097935294858"
45
37
  },
46
38
  {
47
39
  "file": ".gitignore",
48
40
  "hash": "1731686672878252345"
49
41
  },
50
- {
51
- "file": "tsconfig.json",
52
- "hash": "8890589832440448254"
53
- },
54
42
  {
55
43
  "file": "pnpm-workspace.yaml",
56
- "hash": "1540267312135586665"
44
+ "hash": "11062973401223444734"
57
45
  },
58
46
  {
59
47
  "file": "nx.json",
60
48
  "hash": "2058784385052146326"
49
+ },
50
+ {
51
+ "file": "package.json",
52
+ "hash": "18300246505550579403"
53
+ },
54
+ {
55
+ "file": "tsconfig.json",
56
+ "hash": "8890589832440448254"
57
+ },
58
+ {
59
+ "file": "CLAUDE.md",
60
+ "hash": "9577234870771110688"
61
61
  }
62
62
  ],
63
63
  "projectFileMap": {
64
+ "shared-testing": [
65
+ {
66
+ "file": "shared/testing/fixtures/apiData.json",
67
+ "hash": "5455579627617620587"
68
+ },
69
+ {
70
+ "file": "shared/testing/fixtures/playgroundData.json",
71
+ "hash": "6646110001933817841"
72
+ },
73
+ {
74
+ "file": "shared/testing/global-hooks/after/mobile.hook.ts",
75
+ "hash": "17704300444638893067"
76
+ },
77
+ {
78
+ "file": "shared/testing/global-hooks/after/web.hook.ts",
79
+ "hash": "4319467857538977176"
80
+ },
81
+ {
82
+ "file": "shared/testing/global-hooks/before/mobile.hook.ts",
83
+ "hash": "1418831585755647488"
84
+ },
85
+ {
86
+ "file": "shared/testing/global-hooks/before/web.hook.ts",
87
+ "hash": "5655415662119179755"
88
+ },
89
+ {
90
+ "file": "shared/testing/page-objects/MatchersPage/mobile.ts",
91
+ "hash": "13486007993280160103"
92
+ },
93
+ {
94
+ "file": "shared/testing/page-objects/MatchersPage/web.ts",
95
+ "hash": "6708715830774655929"
96
+ },
97
+ {
98
+ "file": "shared/testing/page-objects/NavigationPage/mobile.ts",
99
+ "hash": "9843815020701207652"
100
+ },
101
+ {
102
+ "file": "shared/testing/page-objects/NavigationPage/web.ts",
103
+ "hash": "2341250336288762399"
104
+ },
105
+ {
106
+ "file": "shared/testing/page-objects/PlaygroundPage/mobile.ts",
107
+ "hash": "8192927760362991284"
108
+ },
109
+ {
110
+ "file": "shared/testing/page-objects/PlaygroundPage/web.ts",
111
+ "hash": "13289179655405426712"
112
+ },
113
+ {
114
+ "file": "shared/testing/project.json",
115
+ "hash": "7371378800661206349"
116
+ },
117
+ {
118
+ "file": "shared/testing/support/actions/fillCredentials/mobile.action.ts",
119
+ "hash": "12211081252127526235"
120
+ },
121
+ {
122
+ "file": "shared/testing/support/actions/fillCredentials/web.action.ts",
123
+ "hash": "9993357721307207213"
124
+ },
125
+ {
126
+ "file": "shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts",
127
+ "hash": "2440504136325471241"
128
+ },
129
+ {
130
+ "file": "shared/testing/support/steps/togglePlaygroundStates/step.md",
131
+ "hash": "7033246481886462733"
132
+ },
133
+ {
134
+ "file": "shared/testing/support/steps/togglePlaygroundStates/web.step.ts",
135
+ "hash": "3684774997705487691"
136
+ },
137
+ {
138
+ "file": "shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts",
139
+ "hash": "7780197038828149329"
140
+ },
141
+ {
142
+ "file": "shared/testing/support/steps/verifyPlaygroundState/step.md",
143
+ "hash": "4808698815589956784"
144
+ },
145
+ {
146
+ "file": "shared/testing/support/steps/verifyPlaygroundState/web.step.ts",
147
+ "hash": "7710645189151727546"
148
+ }
149
+ ],
64
150
  "playground-e2e": [
65
151
  {
66
152
  "file": "packages/playground/e2e/project.json",
67
- "hash": "6122062871794656679"
153
+ "hash": "7483436778468358608"
68
154
  },
69
155
  {
70
156
  "file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts",
71
- "hash": "9575490864068522371"
157
+ "hash": "4890867782031227471"
72
158
  },
73
159
  {
74
160
  "file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/spec.md",
@@ -76,11 +162,11 @@
76
162
  },
77
163
  {
78
164
  "file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts",
79
- "hash": "14719199496972820521"
165
+ "hash": "1983735092902158167"
80
166
  },
81
167
  {
82
168
  "file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts",
83
- "hash": "15559025338446483940"
169
+ "hash": "11975331038121344625"
84
170
  },
85
171
  {
86
172
  "file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md",
@@ -88,7 +174,7 @@
88
174
  },
89
175
  {
90
176
  "file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts",
91
- "hash": "8888899108699864956"
177
+ "hash": "12887248939991345892"
92
178
  },
93
179
  {
94
180
  "file": "packages/playground/e2e/specs/Playground/hooks/after/mobile.hook.ts",
@@ -130,11 +216,11 @@
130
216
  "matchers-e2e": [
131
217
  {
132
218
  "file": "packages/matchers/e2e/project.json",
133
- "hash": "18324501588508262577"
219
+ "hash": "8584556520682172690"
134
220
  },
135
221
  {
136
222
  "file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts",
137
- "hash": "2682063783863835865"
223
+ "hash": "17579115414444861159"
138
224
  },
139
225
  {
140
226
  "file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md",
@@ -142,11 +228,11 @@
142
228
  },
143
229
  {
144
230
  "file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts",
145
- "hash": "5895499546010726959"
231
+ "hash": "3506437341224463352"
146
232
  },
147
233
  {
148
234
  "file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts",
149
- "hash": "9731683820811243184"
235
+ "hash": "9190801750994680269"
150
236
  },
151
237
  {
152
238
  "file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md",
@@ -154,7 +240,7 @@
154
240
  },
155
241
  {
156
242
  "file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts",
157
- "hash": "9731683820811243184"
243
+ "hash": "9190801750994680269"
158
244
  },
159
245
  {
160
246
  "file": "packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts",
@@ -194,7 +280,7 @@
194
280
  },
195
281
  {
196
282
  "file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts",
197
- "hash": "897642812032406765"
283
+ "hash": "323792240291177398"
198
284
  },
199
285
  {
200
286
  "file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/spec.md",
@@ -202,7 +288,7 @@
202
288
  },
203
289
  {
204
290
  "file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts",
205
- "hash": "16704245888310457922"
291
+ "hash": "511473937149422354"
206
292
  },
207
293
  {
208
294
  "file": "packages/matchers/e2e/specs/BrowserContext/hooks/after/mobile.hook.ts",
@@ -242,7 +328,7 @@
242
328
  },
243
329
  {
244
330
  "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts",
245
- "hash": "17618245157031985455"
331
+ "hash": "8677841806027518974"
246
332
  },
247
333
  {
248
334
  "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/spec.md",
@@ -250,11 +336,11 @@
250
336
  },
251
337
  {
252
338
  "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts",
253
- "hash": "8976640626360649218"
339
+ "hash": "12332179917980160209"
254
340
  },
255
341
  {
256
342
  "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts",
257
- "hash": "643008650428082503"
343
+ "hash": "3266336732830051248"
258
344
  },
259
345
  {
260
346
  "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md",
@@ -262,7 +348,7 @@
262
348
  },
263
349
  {
264
350
  "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts",
265
- "hash": "4304632129714560011"
351
+ "hash": "17282964442852282533"
266
352
  },
267
353
  {
268
354
  "file": "packages/matchers/e2e/specs/ContentMatchers/hooks/after/mobile.hook.ts",
@@ -302,7 +388,7 @@
302
388
  },
303
389
  {
304
390
  "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts",
305
- "hash": "12870706911695302447"
391
+ "hash": "3003231334062979167"
306
392
  },
307
393
  {
308
394
  "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md",
@@ -310,11 +396,11 @@
310
396
  },
311
397
  {
312
398
  "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts",
313
- "hash": "3419301384522692853"
399
+ "hash": "15122524465264354499"
314
400
  },
315
401
  {
316
402
  "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts",
317
- "hash": "16151858641023407840"
403
+ "hash": "7303226060649403765"
318
404
  },
319
405
  {
320
406
  "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md",
@@ -322,7 +408,7 @@
322
408
  },
323
409
  {
324
410
  "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts",
325
- "hash": "5493919620925775722"
411
+ "hash": "5046284625116809582"
326
412
  },
327
413
  {
328
414
  "file": "packages/matchers/e2e/specs/ElementMatchers/hooks/after/mobile.hook.ts",
@@ -362,101 +448,15 @@
362
448
  },
363
449
  {
364
450
  "file": "packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts",
365
- "hash": "9114059937121224653"
451
+ "hash": "18074865448566424579"
366
452
  },
367
453
  {
368
454
  "file": "packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md",
369
- "hash": "568935421143716154"
455
+ "hash": "4313157257621471941"
370
456
  },
371
457
  {
372
458
  "file": "packages/matchers/e2e/specs/EnvironmentConfig/suite.md",
373
- "hash": "14465705082534195927"
374
- }
375
- ],
376
- "shared-testing": [
377
- {
378
- "file": "shared/testing/fixtures/apiData.json",
379
- "hash": "5455579627617620587"
380
- },
381
- {
382
- "file": "shared/testing/fixtures/playgroundData.json",
383
- "hash": "6646110001933817841"
384
- },
385
- {
386
- "file": "shared/testing/global-hooks/after/mobile.hook.ts",
387
- "hash": "17704300444638893067"
388
- },
389
- {
390
- "file": "shared/testing/global-hooks/after/web.hook.ts",
391
- "hash": "4319467857538977176"
392
- },
393
- {
394
- "file": "shared/testing/global-hooks/before/mobile.hook.ts",
395
- "hash": "1418831585755647488"
396
- },
397
- {
398
- "file": "shared/testing/global-hooks/before/web.hook.ts",
399
- "hash": "5655415662119179755"
400
- },
401
- {
402
- "file": "shared/testing/page-objects/MatchersPage/mobile.ts",
403
- "hash": "14739770433286832154"
404
- },
405
- {
406
- "file": "shared/testing/page-objects/MatchersPage/web.ts",
407
- "hash": "10534289472778041645"
408
- },
409
- {
410
- "file": "shared/testing/page-objects/NavigationPage/mobile.ts",
411
- "hash": "11930933505220566244"
412
- },
413
- {
414
- "file": "shared/testing/page-objects/NavigationPage/web.ts",
415
- "hash": "4680403657482770927"
416
- },
417
- {
418
- "file": "shared/testing/page-objects/PlaygroundPage/mobile.ts",
419
- "hash": "13898814571616324397"
420
- },
421
- {
422
- "file": "shared/testing/page-objects/PlaygroundPage/web.ts",
423
- "hash": "17078042520995651552"
424
- },
425
- {
426
- "file": "shared/testing/project.json",
427
- "hash": "11335838434811718514"
428
- },
429
- {
430
- "file": "shared/testing/support/actions/fillCredentials/mobile.action.ts",
431
- "hash": "8096860271186295656"
432
- },
433
- {
434
- "file": "shared/testing/support/actions/fillCredentials/web.action.ts",
435
- "hash": "8762216567275912008"
436
- },
437
- {
438
- "file": "shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts",
439
- "hash": "13466002792648515658"
440
- },
441
- {
442
- "file": "shared/testing/support/steps/togglePlaygroundStates/step.md",
443
- "hash": "7033246481886462733"
444
- },
445
- {
446
- "file": "shared/testing/support/steps/togglePlaygroundStates/web.step.ts",
447
- "hash": "13190630044352974546"
448
- },
449
- {
450
- "file": "shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts",
451
- "hash": "15310420586937940575"
452
- },
453
- {
454
- "file": "shared/testing/support/steps/verifyPlaygroundState/step.md",
455
- "hash": "4808698815589956784"
456
- },
457
- {
458
- "file": "shared/testing/support/steps/verifyPlaygroundState/web.step.ts",
459
- "hash": "11897106765901527184"
459
+ "hash": "2736763753819703752"
460
460
  }
461
461
  ]
462
462
  }
@@ -1 +1 @@
1
- 5892609112787235781
1
+ 570877138422518711