@testspectra/cli 1.1.7 → 1.1.8-rc.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 (261) hide show
  1. package/bin/.testspectra-runner.hash +1 -1
  2. package/bin/spectra.js +0 -0
  3. package/bin/testspectra-runner.exe +0 -0
  4. package/demo-app/assets/index-BhlW-eXG.css +1 -0
  5. package/demo-app/assets/index-DOtRypCa.js +154 -0
  6. package/demo-app/index.html +2 -2
  7. package/dist/.tsbuildinfo +1 -1
  8. package/dist/commands/__tests__/run-e2e.test.js +270 -29
  9. package/dist/commands/__tests__/run.test.js +92 -16
  10. package/dist/commands/demo.js +17 -7
  11. package/dist/commands/init.d.ts +1 -1
  12. package/dist/commands/init.js +154 -149
  13. package/dist/commands/lint.d.ts +5 -0
  14. package/dist/commands/lint.js +55 -0
  15. package/dist/commands/refactor.d.ts +2 -1
  16. package/dist/commands/refactor.js +129 -35
  17. package/dist/commands/run.d.ts +2 -3
  18. package/dist/commands/run.js +93 -28
  19. package/dist/commands/skills.d.ts +9 -0
  20. package/dist/commands/skills.js +28 -0
  21. package/dist/commands/sync-types.js +1 -0
  22. package/dist/commands/test.d.ts +17 -0
  23. package/dist/commands/test.js +104 -0
  24. package/dist/commands/watch.js +9 -3
  25. package/dist/config/loader.js +1 -1
  26. package/dist/config/schema.d.ts +5 -114
  27. package/dist/config/schema.js +1 -17
  28. package/dist/generator/__tests__/tsconfig-isolation.test.js +6 -2
  29. package/dist/generator/__tests__/type-generator.test.js +1 -1
  30. package/dist/generator/tsconfig-generator.js +44 -16
  31. package/dist/generator/type-generator.d.ts +24 -1
  32. package/dist/generator/type-generator.js +104 -8
  33. package/dist/index.d.ts +1 -1
  34. package/dist/index.js +76 -40
  35. package/dist/linter/__tests__/anonymous-export.test.js +184 -0
  36. package/dist/linter/__tests__/component-test-imports.test.d.ts +1 -0
  37. package/dist/linter/__tests__/component-test-imports.test.js +115 -0
  38. package/dist/linter/__tests__/shared-lib-boundary.test.d.ts +1 -0
  39. package/dist/linter/__tests__/shared-lib-boundary.test.js +270 -0
  40. package/dist/linter/__tests__/spec-schema.test.d.ts +1 -0
  41. package/dist/linter/__tests__/spec-schema.test.js +369 -0
  42. package/dist/linter/__tests__/step-parity.test.d.ts +1 -0
  43. package/dist/linter/__tests__/step-parity.test.js +372 -0
  44. package/dist/linter/discovery.d.ts +30 -0
  45. package/dist/linter/discovery.js +249 -0
  46. package/dist/linter/extractor.d.ts +67 -0
  47. package/dist/linter/extractor.js +245 -0
  48. package/dist/linter/index.d.ts +7 -0
  49. package/dist/linter/index.js +7 -0
  50. package/dist/linter/parser.d.ts +24 -0
  51. package/dist/linter/parser.js +219 -0
  52. package/dist/linter/schemas/spec.schema.d.ts +83 -0
  53. package/dist/linter/schemas/spec.schema.js +150 -0
  54. package/dist/linter/schemas/suite.schema.d.ts +59 -0
  55. package/dist/linter/schemas/suite.schema.js +83 -0
  56. package/dist/linter/spec-linter.d.ts +23 -0
  57. package/dist/linter/spec-linter.js +630 -0
  58. package/dist/linter/types.d.ts +28 -0
  59. package/dist/linter/types.js +1 -0
  60. package/dist/refactor/__tests__/refactor-engine.test.js +698 -0
  61. package/dist/refactor/refactor-engine.d.ts +25 -0
  62. package/dist/refactor/refactor-engine.js +374 -42
  63. package/dist/reporter/semantic-formatter.js +22 -2
  64. package/dist/reporter/types.d.ts +1 -1
  65. package/dist/runner/bridge.d.ts +1 -1
  66. package/dist/runner/bridge.js +34 -21
  67. package/dist/runner/reporter.d.ts +2 -0
  68. package/dist/runner/reporter.js +11 -3
  69. package/dist/utils/__tests__/api-server.test.d.ts +1 -0
  70. package/dist/utils/__tests__/api-server.test.js +62 -0
  71. package/dist/utils/__tests__/demo-server.test.d.ts +1 -0
  72. package/dist/utils/__tests__/demo-server.test.js +35 -0
  73. package/dist/utils/api-server.d.ts +19 -0
  74. package/dist/utils/api-server.js +179 -0
  75. package/dist/utils/demo-server.d.ts +5 -0
  76. package/dist/utils/demo-server.js +8 -1
  77. package/package.json +29 -25
  78. package/templates/default/CLAUDE.md +16 -11
  79. package/templates/default/global-hooks/after/mobile.hook.ts +3 -3
  80. package/templates/default/global-hooks/after/web.hook.ts +3 -3
  81. package/templates/default/global-hooks/before/mobile.hook.ts +3 -3
  82. package/templates/default/global-hooks/before/web.hook.ts +3 -3
  83. package/templates/default/package.json +3 -3
  84. package/templates/default/page-objects/AuthPage/mobile.ts +5 -0
  85. package/templates/default/page-objects/AuthPage/web.ts +10 -0
  86. package/templates/default/page-objects/MatchersPage/mobile.ts +70 -46
  87. package/templates/default/page-objects/MatchersPage/web.ts +43 -37
  88. package/templates/default/page-objects/NavigationPage/mobile.ts +14 -14
  89. package/templates/default/page-objects/NavigationPage/web.ts +8 -8
  90. package/templates/default/page-objects/PlaygroundPage/mobile.ts +42 -36
  91. package/templates/default/page-objects/PlaygroundPage/web.ts +31 -31
  92. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +53 -11
  93. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +19 -12
  94. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +31 -27
  95. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/android.test.ts +3 -0
  96. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/common.test.ts +3 -0
  97. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +27 -16
  98. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +19 -12
  99. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +26 -24
  100. package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/common.test.ts +30 -0
  101. package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/spec.md +22 -0
  102. package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/common.test.ts +27 -0
  103. package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/spec.md +20 -0
  104. package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/spec.md +24 -0
  105. package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/web.test.ts +26 -0
  106. package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/spec.md +37 -0
  107. package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/web.test.ts +21 -0
  108. package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/spec.md +29 -0
  109. package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/web.test.ts +16 -0
  110. package/templates/default/specs/ApiInterception/suite.md +10 -9
  111. package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/common.test.ts +30 -0
  112. package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/spec.md +23 -0
  113. package/templates/default/specs/ApiSeeding/hooks/after/common.hook.ts +16 -0
  114. package/templates/default/specs/ApiSeeding/hooks/before/common.hook.ts +28 -0
  115. package/templates/default/specs/ApiSeeding/suite.md +9 -0
  116. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/mobile.test.ts +7 -0
  117. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/spec.md +19 -0
  118. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/web.test.ts +9 -0
  119. package/templates/default/specs/Authentication/suite.md +9 -0
  120. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +9 -9
  121. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/spec.md +17 -12
  122. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
  123. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/mobile.test.ts +17 -0
  124. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/spec.md +28 -0
  125. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/web.test.ts +26 -0
  126. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/common.test.ts +26 -0
  127. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/spec.md +19 -12
  128. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +11 -11
  129. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md +17 -12
  130. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
  131. package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/common.test.ts +14 -0
  132. package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/spec.md +21 -0
  133. package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/mobile.test.ts +28 -0
  134. package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/spec.md +29 -0
  135. package/templates/default/specs/DeepLink/suite.md +9 -0
  136. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +11 -11
  137. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md +17 -12
  138. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
  139. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +29 -29
  140. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md +19 -12
  141. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
  142. package/templates/default/specs/ElementMatchers/suite.md +10 -9
  143. package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -0
  144. package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -0
  145. package/templates/default/specs/EnvironmentConfig/suite.md +9 -0
  146. package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/mobile.test.ts +26 -0
  147. package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/spec.md +22 -0
  148. package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/mobile.test.ts +13 -0
  149. package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/spec.md +20 -0
  150. package/templates/default/specs/PermissionRationale/suite.md +9 -0
  151. package/templates/default/specs/Playground/TC-0001-form-controls/mobile.test.ts +6 -6
  152. package/templates/default/specs/Playground/TC-0001-form-controls/spec.md +18 -12
  153. package/templates/default/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
  154. package/templates/default/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +6 -6
  155. package/templates/default/specs/Playground/TC-0002-toggle-elements/spec.md +18 -12
  156. package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
  157. package/templates/default/spectra.config.ts +52 -68
  158. package/templates/default/support/actions/fillCredentials/mobile.action.ts +4 -4
  159. package/templates/default/support/actions/fillCredentials/web.action.ts +4 -4
  160. package/templates/default/support/actions/seedSession/mobile.action.ts +9 -0
  161. package/templates/default/support/actions/seedSession/web.action.ts +13 -0
  162. package/templates/default/support/steps/togglePlaygroundStates/mobile.step.ts +5 -5
  163. package/templates/default/support/steps/togglePlaygroundStates/web.step.ts +5 -5
  164. package/templates/default/support/steps/verifyPlaygroundState/mobile.step.ts +6 -6
  165. package/templates/default/support/steps/verifyPlaygroundState/web.step.ts +6 -6
  166. package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db +0 -0
  167. package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db-shm +0 -0
  168. package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db-wal +0 -0
  169. package/templates/nx/.nx/workspace-data/d/daemon.log +1577 -168
  170. package/templates/nx/.nx/workspace-data/d/server-process.json +3 -0
  171. package/templates/nx/.nx/workspace-data/file-map.json +464 -0
  172. package/templates/nx/.nx/workspace-data/lockfile.hash +1 -0
  173. package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
  174. package/templates/nx/.nx/workspace-data/parsed-lock-file.json +13485 -0
  175. package/templates/nx/.nx/workspace-data/project-graph.json +14389 -0
  176. package/templates/nx/CLAUDE.md +10 -10
  177. package/templates/nx/package.json +3 -3
  178. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +27 -3
  179. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -27
  180. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +24 -3
  181. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -24
  182. package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +3 -3
  183. package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
  184. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +3 -3
  185. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +17 -17
  186. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +3 -3
  187. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
  188. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +3 -3
  189. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
  190. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +3 -3
  191. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
  192. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -0
  193. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -0
  194. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/suite.md +9 -0
  195. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts +3 -3
  196. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
  197. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +3 -3
  198. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
  199. package/templates/nx/pnpm-lock.yaml +6663 -6663
  200. package/templates/nx/pnpm-workspace.yaml +9 -9
  201. package/templates/nx/shared/testing/page-objects/MatchersPage/mobile.ts +33 -33
  202. package/templates/nx/shared/testing/page-objects/MatchersPage/web.ts +91 -37
  203. package/templates/nx/shared/testing/page-objects/NavigationPage/mobile.ts +5 -5
  204. package/templates/nx/shared/testing/page-objects/NavigationPage/web.ts +8 -8
  205. package/templates/nx/shared/testing/page-objects/PlaygroundPage/mobile.ts +26 -26
  206. package/templates/nx/shared/testing/page-objects/PlaygroundPage/web.ts +31 -31
  207. package/templates/nx/shared/testing/project.json +19 -19
  208. package/templates/nx/shared/testing/support/actions/fillCredentials/mobile.action.ts +4 -4
  209. package/templates/nx/shared/testing/support/actions/fillCredentials/web.action.ts +4 -4
  210. package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts +3 -3
  211. package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/web.step.ts +5 -5
  212. package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts +4 -4
  213. package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/web.step.ts +6 -6
  214. package/templates/nx/spectra.config.ts +52 -68
  215. package/templates/react-component/.cursorrules +17 -0
  216. package/templates/react-component/.vscode/extensions.json +5 -0
  217. package/templates/react-component/CLAUDE.md +14 -0
  218. package/templates/react-component/README.md +69 -0
  219. package/templates/react-component/fixtures/component-mock.json +12 -0
  220. package/templates/react-component/global-hooks/after/web.hook.ts +3 -0
  221. package/templates/react-component/global-hooks/before/web.hook.ts +3 -0
  222. package/templates/react-component/package.json +27 -0
  223. package/templates/react-component/page-objects/BadgeComponent/web.ts +23 -0
  224. package/templates/react-component/page-objects/ButtonComponent/web.ts +23 -0
  225. package/templates/react-component/page-objects/InputComponent/web.ts +13 -0
  226. package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/spec.md +18 -0
  227. package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/web.test.tsx +11 -0
  228. package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/spec.md +18 -0
  229. package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/web.test.tsx +10 -0
  230. package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/spec.md +18 -0
  231. package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/web.test.tsx +16 -0
  232. package/templates/react-component/specs/BadgeComponent/suite.md +12 -0
  233. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/spec.md +19 -0
  234. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +28 -0
  235. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/spec.md +19 -0
  236. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +22 -0
  237. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/spec.md +18 -0
  238. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +8 -0
  239. package/templates/react-component/specs/ButtonComponent/suite.md +12 -0
  240. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/spec.md +20 -0
  241. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +28 -0
  242. package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/spec.md +18 -0
  243. package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/web.test.tsx +9 -0
  244. package/templates/react-component/specs/InputComponent/suite.md +12 -0
  245. package/templates/react-component/spectra.config.ts +27 -0
  246. package/templates/react-component/src/components/Badge/Badge.tsx +60 -0
  247. package/templates/react-component/src/components/Button/Button.tsx +57 -0
  248. package/templates/react-component/src/components/Input/Input.tsx +41 -0
  249. package/templates/react-component/src/test-utils.tsx +23 -0
  250. package/templates/react-component/support/actions/fillInputField/web.action.ts +9 -0
  251. package/templates/react-component/support/steps/verifyButtonState/web.step.ts +12 -0
  252. package/templates/react-component/tsconfig.json +8 -0
  253. package/bin/testspectra-runner +0 -0
  254. package/demo-app/assets/index-DPfv5_EF.js +0 -116
  255. package/demo-app/assets/index-gIwu2EMV.css +0 -1
  256. package/dist/commands/__tests__/cloud-run.test.js +0 -93
  257. package/dist/commands/cloud-run.d.ts +0 -13
  258. package/dist/commands/cloud-run.js +0 -120
  259. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +0 -17
  260. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +0 -17
  261. /package/dist/{commands/__tests__/cloud-run.test.d.ts → linter/__tests__/anonymous-export.test.d.ts} +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ "processId": 11844
3
+ }
@@ -0,0 +1,464 @@
1
+ {
2
+ "version": "6.0",
3
+ "nxVersion": "19.8.4",
4
+ "deps": {
5
+ "@testspectra/cli": "^1.1.8-rc.2",
6
+ "@testspectra/matchers": "^1.1.8-rc.2",
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
+ },
18
+ "pathMappings": {},
19
+ "nxJsonPlugins": [],
20
+ "fileMap": {
21
+ "nonProjectFiles": [
22
+ {
23
+ "file": "CLAUDE.md",
24
+ "hash": "17568546063110469421"
25
+ },
26
+ {
27
+ "file": "spectra.config.ts",
28
+ "hash": "15760368716233691427"
29
+ },
30
+ {
31
+ "file": "pnpm-lock.yaml",
32
+ "hash": "6031117101426621083"
33
+ },
34
+ {
35
+ "file": ".vscode/extensions.json",
36
+ "hash": "6496079274348496909"
37
+ },
38
+ {
39
+ "file": ".cursorrules",
40
+ "hash": "5914400097935294858"
41
+ },
42
+ {
43
+ "file": "package.json",
44
+ "hash": "1462196114389718311"
45
+ },
46
+ {
47
+ "file": ".gitignore",
48
+ "hash": "1731686672878252345"
49
+ },
50
+ {
51
+ "file": "tsconfig.json",
52
+ "hash": "8890589832440448254"
53
+ },
54
+ {
55
+ "file": "pnpm-workspace.yaml",
56
+ "hash": "1540267312135586665"
57
+ },
58
+ {
59
+ "file": "nx.json",
60
+ "hash": "2058784385052146326"
61
+ }
62
+ ],
63
+ "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
+ "matchers-e2e": [
131
+ {
132
+ "file": "packages/matchers/e2e/project.json",
133
+ "hash": "18324501588508262577"
134
+ },
135
+ {
136
+ "file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts",
137
+ "hash": "2682063783863835865"
138
+ },
139
+ {
140
+ "file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md",
141
+ "hash": "14628194141941950054"
142
+ },
143
+ {
144
+ "file": "packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts",
145
+ "hash": "5895499546010726959"
146
+ },
147
+ {
148
+ "file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts",
149
+ "hash": "9731683820811243184"
150
+ },
151
+ {
152
+ "file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md",
153
+ "hash": "10192166495242338866"
154
+ },
155
+ {
156
+ "file": "packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts",
157
+ "hash": "9731683820811243184"
158
+ },
159
+ {
160
+ "file": "packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts",
161
+ "hash": "14051783072589214011"
162
+ },
163
+ {
164
+ "file": "packages/matchers/e2e/specs/ApiInterception/hooks/after/web.hook.ts",
165
+ "hash": "14051783072589214011"
166
+ },
167
+ {
168
+ "file": "packages/matchers/e2e/specs/ApiInterception/hooks/afterEach/mobile.hook.ts",
169
+ "hash": "14051783072589214011"
170
+ },
171
+ {
172
+ "file": "packages/matchers/e2e/specs/ApiInterception/hooks/afterEach/web.hook.ts",
173
+ "hash": "14051783072589214011"
174
+ },
175
+ {
176
+ "file": "packages/matchers/e2e/specs/ApiInterception/hooks/before/mobile.hook.ts",
177
+ "hash": "14051783072589214011"
178
+ },
179
+ {
180
+ "file": "packages/matchers/e2e/specs/ApiInterception/hooks/before/web.hook.ts",
181
+ "hash": "14051783072589214011"
182
+ },
183
+ {
184
+ "file": "packages/matchers/e2e/specs/ApiInterception/hooks/beforeEach/mobile.hook.ts",
185
+ "hash": "14051783072589214011"
186
+ },
187
+ {
188
+ "file": "packages/matchers/e2e/specs/ApiInterception/hooks/beforeEach/web.hook.ts",
189
+ "hash": "14051783072589214011"
190
+ },
191
+ {
192
+ "file": "packages/matchers/e2e/specs/ApiInterception/suite.md",
193
+ "hash": "5220528353413312843"
194
+ },
195
+ {
196
+ "file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts",
197
+ "hash": "897642812032406765"
198
+ },
199
+ {
200
+ "file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/spec.md",
201
+ "hash": "6634982293435252454"
202
+ },
203
+ {
204
+ "file": "packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts",
205
+ "hash": "16704245888310457922"
206
+ },
207
+ {
208
+ "file": "packages/matchers/e2e/specs/BrowserContext/hooks/after/mobile.hook.ts",
209
+ "hash": "14051783072589214011"
210
+ },
211
+ {
212
+ "file": "packages/matchers/e2e/specs/BrowserContext/hooks/after/web.hook.ts",
213
+ "hash": "14051783072589214011"
214
+ },
215
+ {
216
+ "file": "packages/matchers/e2e/specs/BrowserContext/hooks/afterEach/mobile.hook.ts",
217
+ "hash": "14051783072589214011"
218
+ },
219
+ {
220
+ "file": "packages/matchers/e2e/specs/BrowserContext/hooks/afterEach/web.hook.ts",
221
+ "hash": "14051783072589214011"
222
+ },
223
+ {
224
+ "file": "packages/matchers/e2e/specs/BrowserContext/hooks/before/mobile.hook.ts",
225
+ "hash": "14051783072589214011"
226
+ },
227
+ {
228
+ "file": "packages/matchers/e2e/specs/BrowserContext/hooks/before/web.hook.ts",
229
+ "hash": "14051783072589214011"
230
+ },
231
+ {
232
+ "file": "packages/matchers/e2e/specs/BrowserContext/hooks/beforeEach/mobile.hook.ts",
233
+ "hash": "14051783072589214011"
234
+ },
235
+ {
236
+ "file": "packages/matchers/e2e/specs/BrowserContext/hooks/beforeEach/web.hook.ts",
237
+ "hash": "14051783072589214011"
238
+ },
239
+ {
240
+ "file": "packages/matchers/e2e/specs/BrowserContext/suite.md",
241
+ "hash": "6012328608722212682"
242
+ },
243
+ {
244
+ "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts",
245
+ "hash": "17618245157031985455"
246
+ },
247
+ {
248
+ "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/spec.md",
249
+ "hash": "17780221467222960171"
250
+ },
251
+ {
252
+ "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts",
253
+ "hash": "8976640626360649218"
254
+ },
255
+ {
256
+ "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts",
257
+ "hash": "643008650428082503"
258
+ },
259
+ {
260
+ "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md",
261
+ "hash": "12740401532227616202"
262
+ },
263
+ {
264
+ "file": "packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts",
265
+ "hash": "4304632129714560011"
266
+ },
267
+ {
268
+ "file": "packages/matchers/e2e/specs/ContentMatchers/hooks/after/mobile.hook.ts",
269
+ "hash": "14051783072589214011"
270
+ },
271
+ {
272
+ "file": "packages/matchers/e2e/specs/ContentMatchers/hooks/after/web.hook.ts",
273
+ "hash": "14051783072589214011"
274
+ },
275
+ {
276
+ "file": "packages/matchers/e2e/specs/ContentMatchers/hooks/afterEach/mobile.hook.ts",
277
+ "hash": "14051783072589214011"
278
+ },
279
+ {
280
+ "file": "packages/matchers/e2e/specs/ContentMatchers/hooks/afterEach/web.hook.ts",
281
+ "hash": "14051783072589214011"
282
+ },
283
+ {
284
+ "file": "packages/matchers/e2e/specs/ContentMatchers/hooks/before/mobile.hook.ts",
285
+ "hash": "14051783072589214011"
286
+ },
287
+ {
288
+ "file": "packages/matchers/e2e/specs/ContentMatchers/hooks/before/web.hook.ts",
289
+ "hash": "14051783072589214011"
290
+ },
291
+ {
292
+ "file": "packages/matchers/e2e/specs/ContentMatchers/hooks/beforeEach/mobile.hook.ts",
293
+ "hash": "14051783072589214011"
294
+ },
295
+ {
296
+ "file": "packages/matchers/e2e/specs/ContentMatchers/hooks/beforeEach/web.hook.ts",
297
+ "hash": "14051783072589214011"
298
+ },
299
+ {
300
+ "file": "packages/matchers/e2e/specs/ContentMatchers/suite.md",
301
+ "hash": "7886016465513756096"
302
+ },
303
+ {
304
+ "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts",
305
+ "hash": "12870706911695302447"
306
+ },
307
+ {
308
+ "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md",
309
+ "hash": "17922511752871933316"
310
+ },
311
+ {
312
+ "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts",
313
+ "hash": "3419301384522692853"
314
+ },
315
+ {
316
+ "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts",
317
+ "hash": "16151858641023407840"
318
+ },
319
+ {
320
+ "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md",
321
+ "hash": "13778804543857513666"
322
+ },
323
+ {
324
+ "file": "packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts",
325
+ "hash": "5493919620925775722"
326
+ },
327
+ {
328
+ "file": "packages/matchers/e2e/specs/ElementMatchers/hooks/after/mobile.hook.ts",
329
+ "hash": "14051783072589214011"
330
+ },
331
+ {
332
+ "file": "packages/matchers/e2e/specs/ElementMatchers/hooks/after/web.hook.ts",
333
+ "hash": "14051783072589214011"
334
+ },
335
+ {
336
+ "file": "packages/matchers/e2e/specs/ElementMatchers/hooks/afterEach/mobile.hook.ts",
337
+ "hash": "14051783072589214011"
338
+ },
339
+ {
340
+ "file": "packages/matchers/e2e/specs/ElementMatchers/hooks/afterEach/web.hook.ts",
341
+ "hash": "14051783072589214011"
342
+ },
343
+ {
344
+ "file": "packages/matchers/e2e/specs/ElementMatchers/hooks/before/mobile.hook.ts",
345
+ "hash": "14051783072589214011"
346
+ },
347
+ {
348
+ "file": "packages/matchers/e2e/specs/ElementMatchers/hooks/before/web.hook.ts",
349
+ "hash": "14051783072589214011"
350
+ },
351
+ {
352
+ "file": "packages/matchers/e2e/specs/ElementMatchers/hooks/beforeEach/mobile.hook.ts",
353
+ "hash": "14051783072589214011"
354
+ },
355
+ {
356
+ "file": "packages/matchers/e2e/specs/ElementMatchers/hooks/beforeEach/web.hook.ts",
357
+ "hash": "14051783072589214011"
358
+ },
359
+ {
360
+ "file": "packages/matchers/e2e/specs/ElementMatchers/suite.md",
361
+ "hash": "16817934389284560006"
362
+ },
363
+ {
364
+ "file": "packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts",
365
+ "hash": "9114059937121224653"
366
+ },
367
+ {
368
+ "file": "packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md",
369
+ "hash": "568935421143716154"
370
+ },
371
+ {
372
+ "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"
460
+ }
461
+ ]
462
+ }
463
+ }
464
+ }
@@ -0,0 +1 @@
1
+ 5892609112787235781