From fd0658fb429e659b037cbf8b2a86459ce49cb3b3 Mon Sep 17 00:00:00 2001 From: Cre3per <12541974+Cre3per@users.noreply.github.com> Date: Wed, 22 Mar 2023 15:15:53 +0100 Subject: feat(cli): --ext parameter for run, compile, and bundle (#17172) Adds `--ext` to `deno run`, closes #5088 Additionally - Adds `--ext` to `deno compile` and `deno bundle` --- cli/tests/unit/process_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tests/unit') diff --git a/cli/tests/unit/process_test.ts b/cli/tests/unit/process_test.ts index 1799a0190..e6c4bfe59 100644 --- a/cli/tests/unit/process_test.ts +++ b/cli/tests/unit/process_test.ts @@ -658,6 +658,6 @@ Deno.test( p.close(); p.stdout.close(); assertStrictEquals(code, 1); - assertStringIncludes(stderr, "No such file or directory"); + assertStringIncludes(stderr, "Failed getting cwd."); }, ); -- cgit v1.2.3