This website requires JavaScript.
Explore
Help
Sign in
foster
/
denoland-deno
Watch
0
Star
0
Fork
You've already forked denoland-deno
0
mirror of
https://github.com/denoland/deno.git
synced
2024-10-31 09:14:20 -04:00
Code
Issues
Wiki
Activity
f729576b2d
denoland-deno
/
cli
/
tests
/
testdata
/
test
/
unhandled_rejection.ts
4 lines
74 B
TypeScript
Raw
Normal View
History
Unescape
Escape
chore: update deno_lint binary used in CI to v0.5.0 (#10652)
2021-05-18 11:24:01 -04:00
new
Promise
(
(
_resolve
,
reject
)
=
>
{
feat(test): run test modules in parallel (#9815) This commit adds support for running test in parallel. Entire test runner functionality has been rewritten from JavaScript to Rust and a set of ops was added to support reporting in Rust. A new "--jobs" flag was added to "deno test" that allows to configure how many threads will be used. When given no value it defaults to 2.
2021-04-28 14:17:04 -04:00
reject
(
new
Error
(
"rejection"
)
)
;
}
)
;
Copy permalink