mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(jupyter): Deno.test() panic (#21606)
Fixes https://github.com/denoland/deno/issues/21594 I verified locally that this fixes the problem. I'm working on testing harness for Jupyter kernel to catch regressions like this and will add it in a follow up PR.
This commit is contained in:
parent
cd480b481e
commit
ceaa646a34
1 changed files with 3 additions and 1 deletions
|
@ -1245,7 +1245,9 @@ impl CliOptions {
|
|||
self.flags.enable_op_summary_metrics
|
||||
|| matches!(
|
||||
self.flags.subcommand,
|
||||
DenoSubcommand::Test(_) | DenoSubcommand::Repl(_)
|
||||
DenoSubcommand::Test(_)
|
||||
| DenoSubcommand::Repl(_)
|
||||
| DenoSubcommand::Jupyter(_)
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue