-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add
DENO_JOBS
env variable and deprecate numeric value for `-…
…-jobs`
- Loading branch information
Showing
6 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Warning: --jobs flag is deprecated. Use 'DENO_JOBS' environment variable instead. | ||
Check [WILDCARD]/test/pass.ts | ||
running 10 tests from ./test/pass.ts | ||
test 0 ... ok ([WILDCARD]) | ||
test 1 ... ok ([WILDCARD]) | ||
test 2 ... ok ([WILDCARD]) | ||
test 3 ... ok ([WILDCARD]) | ||
test 4 ... ok ([WILDCARD]) | ||
test 5 ... ok ([WILDCARD]) | ||
test 6 ... ok ([WILDCARD]) | ||
test 7 ... ok ([WILDCARD]) | ||
test 8 ... | ||
------- output ------- | ||
console.log | ||
----- output end ----- | ||
test 8 ... ok ([WILDCARD]) | ||
test 9 ... | ||
------- output ------- | ||
console.error | ||
----- output end ----- | ||
test 9 ... ok ([WILDCARD]) | ||
|
||
ok | 10 passed | 0 failed ([WILDCARD]) | ||
|
7 changes: 7 additions & 0 deletions
7
cli/tests/testdata/test/short-pass-jobs-flag-with-numeric-value.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Warning: --jobs flag with numeric value is deprecated. Use 'DENO_JOBS' environment variable with --jobs flag instead. | ||
Check [WILDCARD]/test/short-pass.ts | ||
running 1 test from ./test/short-pass.ts | ||
test ... ok ([WILDCARD]) | ||
|
||
ok | 1 passed | 0 failed ([WILDCARD]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Deno.test("test", () => {}); |