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