diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-14 22:58:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-14 21:58:06 +0000 |
commit | a918804ee08071d2193c197031581ae24f12e492 (patch) | |
tree | a2f14f051eef408b735b42c52300689f968410cf /cli/tests/integration/run_tests.rs | |
parent | fc17ddbcc43708b6265758bc3e034ab0b5fcb8c3 (diff) |
feat(unstable): remove --unstable-workspaces flag (#21891)
The workspaces feature is still considered unstable and can change.
Requiring this flag hinders DX.
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 999dc1177..38408c0f9 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -4804,7 +4804,7 @@ itest!(explicit_resource_management { }); itest!(workspaces_basic { - args: "run -L debug -A --unstable-workspaces main.ts", + args: "run -L debug -A main.ts", output: "run/workspaces/basic/main.out", cwd: Some("run/workspaces/basic/"), copy_temp_dir: Some("run/workspaces/basic/"), @@ -4813,7 +4813,7 @@ itest!(workspaces_basic { }); itest!(workspaces_member_outside_root_dir { - args: "run -A --unstable-workspaces main.ts", + args: "run -A main.ts", output: "run/workspaces/member_outside_root_dir/main.out", cwd: Some("run/workspaces/member_outside_root_dir/"), copy_temp_dir: Some("run/workspaces/member_outside_root_dir/"), @@ -4823,7 +4823,7 @@ itest!(workspaces_member_outside_root_dir { }); itest!(workspaces_nested_member { - args: "run -A --unstable-workspaces main.ts", + args: "run -A main.ts", output: "run/workspaces/nested_member/main.out", cwd: Some("run/workspaces/nested_member/"), copy_temp_dir: Some("run/workspaces/nested_member/"), |