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:
parent
71c4f5e5bb
commit
659f7b0433
1 changed files with 3 additions and 1 deletions
4
main.go
4
main.go
|
@ -24,7 +24,9 @@ func FlagsParse() []string {
|
|||
if *flagV8Options {
|
||||
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)
|
||||
|
||||
return args
|
||||
|
|
Loading…
Reference in a new issue