diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-24 19:37:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-24 19:37:02 -0500 |
commit | e6a9588b4375f7ff3f445d13e4cd4b3c334d451c (patch) | |
tree | c5dc71687bb3f38174d287a54d583e1b8c8f219e /cli/tests/testdata | |
parent | 72dd7ad8075d626f5ec4aedca5f6aaae19c736bb (diff) |
fix(task): output encoding issues on windows (#16794)
Closes #16792
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r-- | cli/tests/testdata/task/deno.json | 3 | ||||
-rw-r--r-- | cli/tests/testdata/task/task_no_args.out | 2 | ||||
-rw-r--r-- | cli/tests/testdata/task/task_non_existent.out | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/cli/tests/testdata/task/deno.json b/cli/tests/testdata/task/deno.json index 043f49b61..c57426d25 100644 --- a/cli/tests/testdata/task/deno.json +++ b/cli/tests/testdata/task/deno.json @@ -7,6 +7,7 @@ "piped": "echo 12345 | (deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)' && deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)')", "exit_code_5": "echo $(echo 10 ; exit 2) && exit 5", "echo_cwd": "echo $(pwd)", - "echo_init_cwd": "echo $INIT_CWD" + "echo_init_cwd": "echo $INIT_CWD", + "echo_emoji": "echo 🔥" } } diff --git a/cli/tests/testdata/task/task_no_args.out b/cli/tests/testdata/task/task_no_args.out index 2001f269d..e41b3edd5 100644 --- a/cli/tests/testdata/task/task_no_args.out +++ b/cli/tests/testdata/task/task_no_args.out @@ -7,6 +7,8 @@ Available tasks: echo 1 - echo_cwd echo $(pwd) +- echo_emoji + echo 🔥 - echo_init_cwd echo $INIT_CWD - exit_code_5 diff --git a/cli/tests/testdata/task/task_non_existent.out b/cli/tests/testdata/task/task_non_existent.out index 035a43fd8..0e70f24d9 100644 --- a/cli/tests/testdata/task/task_non_existent.out +++ b/cli/tests/testdata/task/task_non_existent.out @@ -8,6 +8,8 @@ Available tasks: echo 1 - echo_cwd echo $(pwd) +- echo_emoji + echo 🔥 - echo_init_cwd echo $INIT_CWD - exit_code_5 |