@testspectra/cli 1.1.8-rc.3 → 1.1.8-rc.31

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