mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 12:49:10 +00:00
Use wildcard to check stack trace outputs (#3)
This commit is contained in:
parent
1156467c93
commit
2242c6c792
10 changed files with 141 additions and 27 deletions
9
testdata/async_error.ts
vendored
Normal file
9
testdata/async_error.ts
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
console.log("hello");
|
||||
const foo = async () => {
|
||||
console.log("before error");
|
||||
throw Error("error");
|
||||
}
|
||||
|
||||
foo();
|
||||
console.log("world");
|
Loading…
Add table
Add a link
Reference in a new issue