diff options
author | Mark Ladyshau <47859603+mrkldshv@users.noreply.github.com> | 2022-07-15 16:29:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 10:29:55 -0400 |
commit | ee0c0586b318fe23908a3b9b4311b26d79c5c8a1 (patch) | |
tree | 7e584fdb24e1637a8a55d47a358970888658ab87 /cli/tests/testdata | |
parent | f9b692e68e97ab6d39ad03988e973279a32cceca (diff) |
feat(cli/test): add `DENO_JOBS` env variable for `test` subcommand (#14929)
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r-- | cli/tests/testdata/test/short-pass-jobs-flag-with-numeric-value.out | 6 | ||||
-rw-r--r-- | cli/tests/testdata/test/short-pass.out | 6 | ||||
-rw-r--r-- | cli/tests/testdata/test/short-pass.ts | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/cli/tests/testdata/test/short-pass-jobs-flag-with-numeric-value.out b/cli/tests/testdata/test/short-pass-jobs-flag-with-numeric-value.out new file mode 100644 index 000000000..09b72d5fd --- /dev/null +++ b/cli/tests/testdata/test/short-pass-jobs-flag-with-numeric-value.out @@ -0,0 +1,6 @@ +Check [WILDCARD]/test/short-pass.ts +running 1 test from ./test/short-pass.ts +test ... ok ([WILDCARD]) + +ok | 1 passed | 0 failed ([WILDCARD]) + diff --git a/cli/tests/testdata/test/short-pass.out b/cli/tests/testdata/test/short-pass.out new file mode 100644 index 000000000..09b72d5fd --- /dev/null +++ b/cli/tests/testdata/test/short-pass.out @@ -0,0 +1,6 @@ +Check [WILDCARD]/test/short-pass.ts +running 1 test from ./test/short-pass.ts +test ... ok ([WILDCARD]) + +ok | 1 passed | 0 failed ([WILDCARD]) + diff --git a/cli/tests/testdata/test/short-pass.ts b/cli/tests/testdata/test/short-pass.ts new file mode 100644 index 000000000..03818ae8d --- /dev/null +++ b/cli/tests/testdata/test/short-pass.ts @@ -0,0 +1 @@ +Deno.test("test", () => {}); |