@testspectra/cli 1.1.8-rc.33 → 1.1.8-rc.34

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testspectra/cli",
3
- "version": "1.1.8-rc.33",
3
+ "version": "1.1.8-rc.34",
4
4
  "description": "TestSpectra Cross-Platform Test Runner CLI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -26,9 +26,9 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "@clack/prompts": "^1.7.0",
29
- "@testspectra/matchers": "^1.1.8-rc.33",
30
- "@testspectra/react": "^1.1.8-rc.33",
31
- "@testspectra/skills": "^1.1.8-rc.33",
29
+ "@testspectra/matchers": "^1.1.8-rc.34",
30
+ "@testspectra/react": "^1.1.8-rc.34",
31
+ "@testspectra/skills": "^1.1.8-rc.34",
32
32
  "chalk": "^5.3.0",
33
33
  "commander": "^12.1.0",
34
34
  "cross-spawn": "^7.0.6",
@@ -39,9 +39,9 @@
39
39
  "zod": "^3.23.8"
40
40
  },
41
41
  "optionalDependencies": {
42
- "@testspectra/cli-darwin-arm64": "1.1.8-rc.33",
43
- "@testspectra/cli-linux-x64": "1.1.8-rc.33",
44
- "@testspectra/cli-win32-x64": "1.1.8-rc.33"
42
+ "@testspectra/cli-darwin-arm64": "1.1.8-rc.34",
43
+ "@testspectra/cli-linux-x64": "1.1.8-rc.34",
44
+ "@testspectra/cli-win32-x64": "1.1.8-rc.34"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/cross-spawn": "^6.0.6",
@@ -17,8 +17,8 @@
17
17
  "postinstall": "spectra sync-types"
18
18
  },
19
19
  "devDependencies": {
20
- "@testspectra/cli": "^1.1.8-rc.33",
21
- "@testspectra/matchers": "^1.1.8-rc.33",
20
+ "@testspectra/cli": "^1.1.8-rc.34",
21
+ "@testspectra/matchers": "^1.1.8-rc.34",
22
22
  "@types/node": "^20.14.0",
23
23
  "@wdio/cli": "^9.2.8",
24
24
  "@wdio/local-runner": "^9.2.8",
@@ -86,23 +86,50 @@ pnpm nx run-many -t e2e
86
86
  pnpm nx affected -t e2e
87
87
  ```
88
88
 
89
- ### Option B: From Inside the Feature Directory (Direct CLI)
89
+ ### Option B: Directly via TestSpectra CLI (`spectra run`)
90
+
91
+ You can execute tests directly via CLI from either the **Monorepo Root** or inside a **Feature Directory**.
92
+ *Zero file-path overhead: You do NOT need to provide long file globs like `"packages/features/auth/**/*.spec.web.ts"` — just specify the TC ID or Suite name directly.*
90
93
 
91
94
  ```bash
92
- # Navigate to the feature e2e folder
93
- cd __SAMPLE_FEATURE_E2E_PATH__
95
+ # === From Monorepo Root ===
96
+
97
+ # 1. Run ALL tests across the entire monorepo
98
+ # (Spawns configured dev servers in parallel, checks readiness, runs tests, tears down)
99
+ pnpm spectra run
100
+
101
+ # 2. Run all tests for a specific host / dev server
102
+ pnpm spectra run --host sso
103
+
104
+ # 3. Run a specific test case by ID (cukup TC ID, tidak perlu path file panjang)
105
+ pnpm spectra run --host sso --spec TC-AUTH-01
106
+ # Atau sebagai argumen posisi langsung:
107
+ pnpm spectra run --host sso TC-AUTH-01
108
+
109
+ # 4. Run satu suite penuh berdasarkan nama suite
110
+ pnpm spectra run --host sso --spec Auth
111
+ # Atau:
112
+ pnpm spectra run --host sso Auth
113
+
114
+ # 5. Run in Headed mode (visible Chrome window)
115
+ pnpm spectra run --host sso --headed
116
+
117
+ # === From Inside Feature Directory (cd __SAMPLE_FEATURE_E2E_PATH__) ===
94
118
 
95
119
  # Run all specs in this feature
96
120
  pnpm spectra run
97
121
 
98
- # Run a specific test case by ID (platform is already picked via -t, no need for the file path)
122
+ # Run a specific test case by ID
99
123
  pnpm spectra run TC-AUTH-01 -t web
100
124
 
125
+ # Run a specific suite by name
126
+ pnpm spectra run Auth -t web
127
+
101
128
  # Target Android device or emulator
102
- pnpm spectra run --target android
129
+ pnpm spectra run -t android
103
130
 
104
- # Run in headed / interactive browser mode
105
- pnpm spectra run --no-headless
131
+ # Target iOS simulator or device
132
+ pnpm spectra run -t ios
106
133
  ```
107
134
 
108
135
  ---
@@ -6403,3 +6403,69 @@
6403
6403
  [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.982Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6404
6404
  [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.982Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6405
6405
  [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.982Z - Time taken for 'total execution time for createProjectGraph()' 15.196041999850422ms
6406
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:00.746Z - [WATCHER]: package.json was modified
6407
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:00.746Z - [WATCHER]: Processing file changes in outputs
6408
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.147Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6409
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.147Z - [REQUEST]: package.json
6410
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.147Z - [REQUEST]:
6411
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.150Z - Time taken for 'hash changed files from watcher' 0.27795800007879734ms
6412
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.157Z - Time taken for 'build-project-configs' 7.948249999899417ms
6413
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.183Z - [SYNC]: collect registered sync generators
6414
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.183Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6415
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.183Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6416
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.183Z - Time taken for 'total execution time for createProjectGraph()' 16.51554200006649ms
6417
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:51:14.474Z - [WATCHER]: Processing file changes in outputs
6418
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:51:14.477Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (sources)
6419
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:51:14.477Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (outputs)
6420
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:51:14.487Z - Server stopped because: "LOCK_FILES_CHANGED"
6421
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.355Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/3c85950abf8517112e60/d.sock
6422
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.357Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (native)
6423
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.359Z - Established a connection. Number of open connections: 1
6424
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.360Z - Established a connection. Number of open connections: 2
6425
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.360Z - Closed a connection. Number of open connections: 1
6426
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.361Z - [REQUEST]: Client Request for Project Graph Received
6427
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.364Z - Time taken for 'loadSpecifiedNxPlugins' 0.42945899999999426ms
6428
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.416Z - [WATCHER]: Processing file changes in outputs
6429
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.484Z - Time taken for 'Load Nx Plugin: /Volumes/Home/Documents/TestSpectra/testspectra-source/node_modules/.pnpm/nx@20.8.4_@swc+core@1.16.2_supports-color@8.1.1/node_modules/nx/src/plugins/js' 123.01295900000001ms
6430
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.490Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6431
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.490Z - [REQUEST]:
6432
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.490Z - [REQUEST]:
6433
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.492Z - Time taken for 'loadDefaultNxPlugins' 128.666709ms
6434
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.526Z - Time taken for 'build-project-configs' 27.195208000000008ms
6435
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.555Z - [SYNC]: collect registered sync generators
6436
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.555Z - [REQUEST]: Responding to the client. project-graph
6437
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.556Z - Time taken for 'total for creating and serializing project graph' 194.528958ms
6438
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.556Z - Done responding to the client project-graph
6439
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.557Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 194. Response time: 2.
6440
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.558Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
6441
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.558Z - Done responding to the client handleRunPreTasksExecution
6442
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.558Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
6443
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.558Z - Time taken for 'preTasksExecution' 0.1555410000000279ms
6444
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.586Z - [REQUEST]: Responding to the client. handleHashTasks
6445
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.586Z - Done responding to the client handleHashTasks
6446
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.586Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
6447
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.633Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
6448
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.633Z - Done responding to the client handleGetEstimatedTaskTimings
6449
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.633Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 13. Response time: 1.
6450
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.634Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
6451
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.634Z - Done responding to the client handleRecordTaskRuns
6452
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.634Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
6453
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.635Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
6454
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.635Z - Done responding to the client handleGetFlakyTasks
6455
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.635Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
6456
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.907Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
6457
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.907Z - Done responding to the client handleRunPostTasksExecution
6458
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.907Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
6459
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.907Z - Time taken for 'postTasksExecution' 0.05291599999998198ms
6460
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.910Z - Closed a connection. Number of open connections: 0
6461
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.825Z - [WATCHER]: package.json was modified
6462
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.827Z - [WATCHER]: Processing file changes in outputs
6463
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.929Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6464
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.929Z - [REQUEST]: package.json
6465
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.929Z - [REQUEST]:
6466
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.932Z - Time taken for 'hash changed files from watcher' 1.0174159999878611ms
6467
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.943Z - Time taken for 'build-project-configs' 9.845541999995476ms
6468
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.948Z - [SYNC]: collect registered sync generators
6469
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.948Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6470
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.948Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6471
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.948Z - Time taken for 'total execution time for createProjectGraph()' 4.657791999998153ms
@@ -1,3 +1,3 @@
1
1
  {
2
- "processId": 52715
2
+ "processId": 94575
3
3
  }
@@ -6,47 +6,199 @@
6
6
  "fileMap": {
7
7
  "nonProjectFiles": [
8
8
  {
9
- "file": ".gitignore",
10
- "hash": "1731686672878252345"
9
+ "file": "tsconfig.json",
10
+ "hash": "8890589832440448254"
11
11
  },
12
12
  {
13
- "file": "pnpm-workspace.yaml",
14
- "hash": "11062973401223444734"
13
+ "file": "pnpm-lock.yaml",
14
+ "hash": "10112233838185913654"
15
15
  },
16
16
  {
17
17
  "file": ".cursorrules",
18
18
  "hash": "5914400097935294858"
19
19
  },
20
20
  {
21
- "file": ".vscode/extensions.json",
22
- "hash": "6496079274348496909"
21
+ "file": ".gitignore",
22
+ "hash": "1731686672878252345"
23
23
  },
24
24
  {
25
- "file": "nx.json",
26
- "hash": "2058784385052146326"
25
+ "file": ".vscode/extensions.json",
26
+ "hash": "6496079274348496909"
27
27
  },
28
28
  {
29
- "file": "tsconfig.json",
30
- "hash": "8890589832440448254"
29
+ "file": "CLAUDE.md",
30
+ "hash": "9577234870771110688"
31
31
  },
32
32
  {
33
33
  "file": "package.json",
34
- "hash": "14621839177050246762"
35
- },
36
- {
37
- "file": "pnpm-lock.yaml",
38
- "hash": "5459540818199025768"
34
+ "hash": "7567798703231922559"
39
35
  },
40
36
  {
41
- "file": "CLAUDE.md",
42
- "hash": "9577234870771110688"
37
+ "file": "pnpm-workspace.yaml",
38
+ "hash": "11062973401223444734"
43
39
  },
44
40
  {
45
41
  "file": "spectra.config.ts",
46
42
  "hash": "9751236501107423384"
43
+ },
44
+ {
45
+ "file": "nx.json",
46
+ "hash": "2058784385052146326"
47
47
  }
48
48
  ],
49
49
  "projectFileMap": {
50
+ "shared-testing": [
51
+ {
52
+ "file": "shared/testing/fixtures/apiData.json",
53
+ "hash": "5455579627617620587"
54
+ },
55
+ {
56
+ "file": "shared/testing/fixtures/playgroundData.json",
57
+ "hash": "6646110001933817841"
58
+ },
59
+ {
60
+ "file": "shared/testing/global-hooks/after/mobile.hook.ts",
61
+ "hash": "17704300444638893067"
62
+ },
63
+ {
64
+ "file": "shared/testing/global-hooks/after/web.hook.ts",
65
+ "hash": "4319467857538977176"
66
+ },
67
+ {
68
+ "file": "shared/testing/global-hooks/before/mobile.hook.ts",
69
+ "hash": "1418831585755647488"
70
+ },
71
+ {
72
+ "file": "shared/testing/global-hooks/before/web.hook.ts",
73
+ "hash": "5655415662119179755"
74
+ },
75
+ {
76
+ "file": "shared/testing/page-objects/MatchersPage/mobile.ts",
77
+ "hash": "13486007993280160103"
78
+ },
79
+ {
80
+ "file": "shared/testing/page-objects/MatchersPage/web.ts",
81
+ "hash": "6708715830774655929"
82
+ },
83
+ {
84
+ "file": "shared/testing/page-objects/NavigationPage/mobile.ts",
85
+ "hash": "9843815020701207652"
86
+ },
87
+ {
88
+ "file": "shared/testing/page-objects/NavigationPage/web.ts",
89
+ "hash": "2341250336288762399"
90
+ },
91
+ {
92
+ "file": "shared/testing/page-objects/PlaygroundPage/mobile.ts",
93
+ "hash": "8192927760362991284"
94
+ },
95
+ {
96
+ "file": "shared/testing/page-objects/PlaygroundPage/web.ts",
97
+ "hash": "13289179655405426712"
98
+ },
99
+ {
100
+ "file": "shared/testing/project.json",
101
+ "hash": "7371378800661206349"
102
+ },
103
+ {
104
+ "file": "shared/testing/support/actions/fillCredentials/mobile.action.ts",
105
+ "hash": "12211081252127526235"
106
+ },
107
+ {
108
+ "file": "shared/testing/support/actions/fillCredentials/web.action.ts",
109
+ "hash": "9993357721307207213"
110
+ },
111
+ {
112
+ "file": "shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts",
113
+ "hash": "2440504136325471241"
114
+ },
115
+ {
116
+ "file": "shared/testing/support/steps/togglePlaygroundStates/step.md",
117
+ "hash": "7033246481886462733"
118
+ },
119
+ {
120
+ "file": "shared/testing/support/steps/togglePlaygroundStates/web.step.ts",
121
+ "hash": "3684774997705487691"
122
+ },
123
+ {
124
+ "file": "shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts",
125
+ "hash": "7780197038828149329"
126
+ },
127
+ {
128
+ "file": "shared/testing/support/steps/verifyPlaygroundState/step.md",
129
+ "hash": "4808698815589956784"
130
+ },
131
+ {
132
+ "file": "shared/testing/support/steps/verifyPlaygroundState/web.step.ts",
133
+ "hash": "7710645189151727546"
134
+ }
135
+ ],
136
+ "playground-e2e": [
137
+ {
138
+ "file": "packages/playground/e2e/project.json",
139
+ "hash": "7483436778468358608"
140
+ },
141
+ {
142
+ "file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts",
143
+ "hash": "4890867782031227471"
144
+ },
145
+ {
146
+ "file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/spec.md",
147
+ "hash": "1594899313611085372"
148
+ },
149
+ {
150
+ "file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts",
151
+ "hash": "1983735092902158167"
152
+ },
153
+ {
154
+ "file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts",
155
+ "hash": "11975331038121344625"
156
+ },
157
+ {
158
+ "file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md",
159
+ "hash": "12190577339537127331"
160
+ },
161
+ {
162
+ "file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts",
163
+ "hash": "12887248939991345892"
164
+ },
165
+ {
166
+ "file": "packages/playground/e2e/specs/Playground/hooks/after/mobile.hook.ts",
167
+ "hash": "14051783072589214011"
168
+ },
169
+ {
170
+ "file": "packages/playground/e2e/specs/Playground/hooks/after/web.hook.ts",
171
+ "hash": "14051783072589214011"
172
+ },
173
+ {
174
+ "file": "packages/playground/e2e/specs/Playground/hooks/afterEach/mobile.hook.ts",
175
+ "hash": "14051783072589214011"
176
+ },
177
+ {
178
+ "file": "packages/playground/e2e/specs/Playground/hooks/afterEach/web.hook.ts",
179
+ "hash": "14051783072589214011"
180
+ },
181
+ {
182
+ "file": "packages/playground/e2e/specs/Playground/hooks/before/mobile.hook.ts",
183
+ "hash": "14051783072589214011"
184
+ },
185
+ {
186
+ "file": "packages/playground/e2e/specs/Playground/hooks/before/web.hook.ts",
187
+ "hash": "14051783072589214011"
188
+ },
189
+ {
190
+ "file": "packages/playground/e2e/specs/Playground/hooks/beforeEach/mobile.hook.ts",
191
+ "hash": "14051783072589214011"
192
+ },
193
+ {
194
+ "file": "packages/playground/e2e/specs/Playground/hooks/beforeEach/web.hook.ts",
195
+ "hash": "14051783072589214011"
196
+ },
197
+ {
198
+ "file": "packages/playground/e2e/specs/Playground/suite.md",
199
+ "hash": "17750886301217575279"
200
+ }
201
+ ],
50
202
  "matchers-e2e": [
51
203
  {
52
204
  "file": "packages/matchers/e2e/project.json",
@@ -292,158 +444,6 @@
292
444
  "file": "packages/matchers/e2e/specs/EnvironmentConfig/suite.md",
293
445
  "hash": "2736763753819703752"
294
446
  }
295
- ],
296
- "playground-e2e": [
297
- {
298
- "file": "packages/playground/e2e/project.json",
299
- "hash": "7483436778468358608"
300
- },
301
- {
302
- "file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts",
303
- "hash": "4890867782031227471"
304
- },
305
- {
306
- "file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/spec.md",
307
- "hash": "1594899313611085372"
308
- },
309
- {
310
- "file": "packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts",
311
- "hash": "1983735092902158167"
312
- },
313
- {
314
- "file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts",
315
- "hash": "11975331038121344625"
316
- },
317
- {
318
- "file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md",
319
- "hash": "12190577339537127331"
320
- },
321
- {
322
- "file": "packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts",
323
- "hash": "12887248939991345892"
324
- },
325
- {
326
- "file": "packages/playground/e2e/specs/Playground/hooks/after/mobile.hook.ts",
327
- "hash": "14051783072589214011"
328
- },
329
- {
330
- "file": "packages/playground/e2e/specs/Playground/hooks/after/web.hook.ts",
331
- "hash": "14051783072589214011"
332
- },
333
- {
334
- "file": "packages/playground/e2e/specs/Playground/hooks/afterEach/mobile.hook.ts",
335
- "hash": "14051783072589214011"
336
- },
337
- {
338
- "file": "packages/playground/e2e/specs/Playground/hooks/afterEach/web.hook.ts",
339
- "hash": "14051783072589214011"
340
- },
341
- {
342
- "file": "packages/playground/e2e/specs/Playground/hooks/before/mobile.hook.ts",
343
- "hash": "14051783072589214011"
344
- },
345
- {
346
- "file": "packages/playground/e2e/specs/Playground/hooks/before/web.hook.ts",
347
- "hash": "14051783072589214011"
348
- },
349
- {
350
- "file": "packages/playground/e2e/specs/Playground/hooks/beforeEach/mobile.hook.ts",
351
- "hash": "14051783072589214011"
352
- },
353
- {
354
- "file": "packages/playground/e2e/specs/Playground/hooks/beforeEach/web.hook.ts",
355
- "hash": "14051783072589214011"
356
- },
357
- {
358
- "file": "packages/playground/e2e/specs/Playground/suite.md",
359
- "hash": "17750886301217575279"
360
- }
361
- ],
362
- "shared-testing": [
363
- {
364
- "file": "shared/testing/fixtures/apiData.json",
365
- "hash": "5455579627617620587"
366
- },
367
- {
368
- "file": "shared/testing/fixtures/playgroundData.json",
369
- "hash": "6646110001933817841"
370
- },
371
- {
372
- "file": "shared/testing/global-hooks/after/mobile.hook.ts",
373
- "hash": "17704300444638893067"
374
- },
375
- {
376
- "file": "shared/testing/global-hooks/after/web.hook.ts",
377
- "hash": "4319467857538977176"
378
- },
379
- {
380
- "file": "shared/testing/global-hooks/before/mobile.hook.ts",
381
- "hash": "1418831585755647488"
382
- },
383
- {
384
- "file": "shared/testing/global-hooks/before/web.hook.ts",
385
- "hash": "5655415662119179755"
386
- },
387
- {
388
- "file": "shared/testing/page-objects/MatchersPage/mobile.ts",
389
- "hash": "13486007993280160103"
390
- },
391
- {
392
- "file": "shared/testing/page-objects/MatchersPage/web.ts",
393
- "hash": "6708715830774655929"
394
- },
395
- {
396
- "file": "shared/testing/page-objects/NavigationPage/mobile.ts",
397
- "hash": "9843815020701207652"
398
- },
399
- {
400
- "file": "shared/testing/page-objects/NavigationPage/web.ts",
401
- "hash": "2341250336288762399"
402
- },
403
- {
404
- "file": "shared/testing/page-objects/PlaygroundPage/mobile.ts",
405
- "hash": "8192927760362991284"
406
- },
407
- {
408
- "file": "shared/testing/page-objects/PlaygroundPage/web.ts",
409
- "hash": "13289179655405426712"
410
- },
411
- {
412
- "file": "shared/testing/project.json",
413
- "hash": "7371378800661206349"
414
- },
415
- {
416
- "file": "shared/testing/support/actions/fillCredentials/mobile.action.ts",
417
- "hash": "12211081252127526235"
418
- },
419
- {
420
- "file": "shared/testing/support/actions/fillCredentials/web.action.ts",
421
- "hash": "9993357721307207213"
422
- },
423
- {
424
- "file": "shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts",
425
- "hash": "2440504136325471241"
426
- },
427
- {
428
- "file": "shared/testing/support/steps/togglePlaygroundStates/step.md",
429
- "hash": "7033246481886462733"
430
- },
431
- {
432
- "file": "shared/testing/support/steps/togglePlaygroundStates/web.step.ts",
433
- "hash": "3684774997705487691"
434
- },
435
- {
436
- "file": "shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts",
437
- "hash": "7780197038828149329"
438
- },
439
- {
440
- "file": "shared/testing/support/steps/verifyPlaygroundState/step.md",
441
- "hash": "4808698815589956784"
442
- },
443
- {
444
- "file": "shared/testing/support/steps/verifyPlaygroundState/web.step.ts",
445
- "hash": "7710645189151727546"
446
- }
447
447
  ]
448
448
  }
449
449
  }
@@ -1 +1 @@
1
- 10768379145142504764
1
+ 13554943208068884806