From 3f5513758d9e237d7c3775165c4164db89a95d31 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Mon, 19 Oct 2020 20:19:20 +0100 Subject: feat(cli/installer): Add missing flags for deno install (#7601) This commit adds support for following flags: - deno install --importmap - deno install --no-remote - deno install --lock - deno install --lock-write - deno install --cached-only - deno install --v8-flags - deno install --seed --- cli/tests/import_map_no_unstable.out | 1 - cli/tests/integration_tests.rs | 7 ------- 2 files changed, 8 deletions(-) delete mode 100644 cli/tests/import_map_no_unstable.out (limited to 'cli/tests') diff --git a/cli/tests/import_map_no_unstable.out b/cli/tests/import_map_no_unstable.out deleted file mode 100644 index 00fe18e74..000000000 --- a/cli/tests/import_map_no_unstable.out +++ /dev/null @@ -1 +0,0 @@ -Unstable API '--importmap'. The --unstable flag must be provided. diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index bbb783e0b..cbe24625e 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1812,13 +1812,6 @@ itest!(_033_import_map { output: "033_import_map.out", }); -itest!(import_map_no_unstable { - args: - "run --quiet --reload --importmap=importmaps/import_map.json importmaps/test.ts", - output: "import_map_no_unstable.out", - exit_code: 70, -}); - itest!(_034_onload { args: "run --quiet --reload 034_onload/main.ts", output: "034_onload.out", -- cgit v1.2.3