@testspectra/cli 1.1.7 → 1.1.8-rc.10

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