Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-12-06 | chore: bump deno_core and update tests (#21467) | Matt Mastracci | |
Landing changes required for https://github.com/denoland/deno_core/pull/359 We needed to update 99_main.js and a whole load of tests. API changes: - setPromiseRejectCallback becomes setUnhandledPromiseRejectionHandler. The function is now called from eventLoopTick. - The promiseRejectMacrotaskCallback no longer exists, as this is automatically handled in eventLoopTick. - ops.op_dispatch_exception now takes a second parameter: in_promise. The preferred way to call this op is now reportUnhandledException or reportUnhandledPromiseRejection. | |||
2023-09-14 | chore(tests): ability to pattern match unordered lines (#20488) | David Sherret | |
This adds the ability to pattern match unordered lines. For example, the downloading messages may appear in any order ``` [UNORDERED_START] Download https://localhost:4546/a.ts Download https://localhost:4546/b.ts [UNORDERED_END] Hello! ``` Additionally, I've made the pattern matching slightly more strict and the output better. | |||
2022-10-26 | feat(cli): show error cause recursion information (#16384) | Cre3per | |