Skip to content

Commit 39ede39

Browse files
wan9chiclaude
andcommitted
test(plan): update windows-only task_graph snapshot to commands array
The `windows_cmd_shim_rewrite` fixture was missed when ResolvedTaskConfig switched from `command: Str` to `commands: Arc<[Str]>`. The fixture is gated to `cfg(windows)` so non-Windows local runs skip it, but CI on Windows fails. Updates the singular `"command"` field to the new array form. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 92cbf78 commit 39ede39

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots

crates/vite_task_plan/tests/plan_snapshots/fixtures/windows_cmd_shim_rewrite/snapshots/task_graph.jsonc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
"package_path": "<workspace>/packages/foo"
1313
},
1414
"resolved_config": {
15-
"command": "vite --port 3000",
15+
"commands": [
16+
"vite --port 3000"
17+
],
1618
"resolved_options": {
1719
"cwd": "<workspace>/packages/foo",
1820
"cache_config": {

0 commit comments

Comments
 (0)