Use wildcard to check stack trace outputs (#3)

This commit is contained in:
Parsa Ghadimi 2018-05-30 17:03:55 +04:30 committed by Ryan Dahl
parent 1156467c93
commit 2242c6c792
10 changed files with 141 additions and 27 deletions

9
testdata/async_error.ts vendored Normal file
View file

@ -0,0 +1,9 @@
console.log("hello");
const foo = async () => {
console.log("before error");
throw Error("error");
}
foo();
console.log("world");