@testspectra/cli 1.1.8-rc.31 → 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.31",
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.31",
30
- "@testspectra/react": "^1.1.8-rc.31",
31
- "@testspectra/skills": "^1.1.8-rc.31",
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.31",
43
- "@testspectra/cli-linux-x64": "1.1.8-rc.31",
44
- "@testspectra/cli-win32-x64": "1.1.8-rc.31"
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.31",
21
- "@testspectra/matchers": "^1.1.8-rc.31",
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
  ---
@@ -6341,3 +6341,131 @@
6341
6341
  [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.640Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6342
6342
  [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.640Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6343
6343
  [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.640Z - Time taken for 'total execution time for createProjectGraph()' 5.402041999972425ms
6344
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.283Z - [WATCHER]: package.json was modified
6345
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.283Z - [WATCHER]: Processing file changes in outputs
6346
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.684Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6347
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.684Z - [REQUEST]: package.json
6348
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.684Z - [REQUEST]:
6349
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.685Z - Time taken for 'hash changed files from watcher' 0.10187499999301508ms
6350
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.688Z - Time taken for 'build-project-configs' 3.0644170000450686ms
6351
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.694Z - [SYNC]: collect registered sync generators
6352
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.694Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6353
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.694Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6354
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.694Z - Time taken for 'total execution time for createProjectGraph()' 4.846124999981839ms
6355
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:21:25.959Z - [WATCHER]: Processing file changes in outputs
6356
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:21:26.017Z - [WATCHER]: Processing file changes in outputs
6357
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:23:55.437Z - [WATCHER]: Processing file changes in outputs
6358
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.153Z - [WATCHER]: Processing file changes in outputs
6359
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.161Z - [WATCHER]: tsconfig.json was modified
6360
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.973Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6361
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.974Z - [REQUEST]: tsconfig.json
6362
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.974Z - [REQUEST]:
6363
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.010Z - Time taken for 'hash changed files from watcher' 11.100333000067621ms
6364
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.052Z - Time taken for 'build-project-configs' 38.42295900033787ms
6365
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.116Z - [SYNC]: collect registered sync generators
6366
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.117Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6367
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.117Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6368
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.117Z - Time taken for 'total execution time for createProjectGraph()' 61.83845800021663ms
6369
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:35.429Z - [WATCHER]: Processing file changes in outputs
6370
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:35.456Z - [WATCHER]: tsconfig.json was modified
6371
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:35.794Z - [WATCHER]: Processing file changes in outputs
6372
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.064Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6373
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.066Z - [REQUEST]: tsconfig.json
6374
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.067Z - [REQUEST]:
6375
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.073Z - Time taken for 'hash changed files from watcher' 0.9786669998429716ms
6376
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.083Z - Time taken for 'build-project-configs' 10.120624999981374ms
6377
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.099Z - [SYNC]: collect registered sync generators
6378
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.099Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6379
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.099Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6380
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.100Z - Time taken for 'total execution time for createProjectGraph()' 15.690542000345886ms
6381
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:20.927Z - [WATCHER]: Processing file changes in outputs
6382
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:20.933Z - [WATCHER]: tsconfig.json was modified
6383
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:23.083Z - [WATCHER]: Processing file changes in outputs
6384
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:23.101Z - [WATCHER]: tsconfig.json was modified
6385
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:23.307Z - [WATCHER]: Processing file changes in outputs
6386
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.134Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6387
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.134Z - [REQUEST]: tsconfig.json
6388
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.134Z - [REQUEST]:
6389
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.137Z - Time taken for 'hash changed files from watcher' 0.30362499970942736ms
6390
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.154Z - Time taken for 'build-project-configs' 15.973540999926627ms
6391
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.173Z - [SYNC]: collect registered sync generators
6392
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.173Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6393
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.173Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6394
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.173Z - Time taken for 'total execution time for createProjectGraph()' 11.552917000371963ms
6395
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:33.532Z - [WATCHER]: package.json was modified
6396
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:33.533Z - [WATCHER]: Processing file changes in outputs
6397
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.936Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6398
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.937Z - [REQUEST]: package.json
6399
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.937Z - [REQUEST]:
6400
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.943Z - Time taken for 'hash changed files from watcher' 1.6645829998888075ms
6401
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.961Z - Time taken for 'build-project-configs' 15.615833000279963ms
6402
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.981Z - [SYNC]: collect registered sync generators
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
+ [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
+ [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": "package.json",
10
- "hash": "6433276245833773822"
11
- },
12
- {
13
- "file": "spectra.config.ts",
14
- "hash": "9751236501107423384"
9
+ "file": "tsconfig.json",
10
+ "hash": "8890589832440448254"
15
11
  },
16
12
  {
17
- "file": "nx.json",
18
- "hash": "2058784385052146326"
13
+ "file": "pnpm-lock.yaml",
14
+ "hash": "10112233838185913654"
19
15
  },
20
16
  {
21
- "file": "CLAUDE.md",
22
- "hash": "9577234870771110688"
17
+ "file": ".cursorrules",
18
+ "hash": "5914400097935294858"
23
19
  },
24
20
  {
25
- "file": "pnpm-workspace.yaml",
26
- "hash": "11062973401223444734"
21
+ "file": ".gitignore",
22
+ "hash": "1731686672878252345"
27
23
  },
28
24
  {
29
25
  "file": ".vscode/extensions.json",
30
26
  "hash": "6496079274348496909"
31
27
  },
32
28
  {
33
- "file": "pnpm-lock.yaml",
34
- "hash": "5459540818199025768"
29
+ "file": "CLAUDE.md",
30
+ "hash": "9577234870771110688"
35
31
  },
36
32
  {
37
- "file": ".cursorrules",
38
- "hash": "5914400097935294858"
33
+ "file": "package.json",
34
+ "hash": "7567798703231922559"
39
35
  },
40
36
  {
41
- "file": "tsconfig.json",
42
- "hash": "8890589832440448254"
37
+ "file": "pnpm-workspace.yaml",
38
+ "hash": "11062973401223444734"
43
39
  },
44
40
  {
45
- "file": ".gitignore",
46
- "hash": "1731686672878252345"
41
+ "file": "spectra.config.ts",
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