1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

Fix 007_stack_trace.ts by removing --abort-on-uncaught-exception

This commit is contained in:
Ryan Dahl 2018-05-28 12:21:06 -04:00
parent 71c4f5e5bb
commit 659f7b0433

View file

@ -24,7 +24,9 @@ func FlagsParse() []string {
if *flagV8Options { if *flagV8Options {
args = append(args, "--help") args = append(args, "--help")
} }
args = append(args, "--abort-on-uncaught-exception") // Adding this causes testdata/007_stack_trace.ts to fail without a
// stacktrace.
// args = append(args, "--abort-on-uncaught-exception")
args = v8worker2.SetFlags(args) args = v8worker2.SetFlags(args)
return args return args