清除 WebStorm Node 选项

huangapple go评论66阅读模式
英文:

Clear WebStorm Node options

问题

当在WebStorm中单击运行/调试时,Jest测试失败。原因是jest配置中的Node选项设置为--watch --experimental-vm-modules,这会导致失败。

我尝试过清除所有模板、恢复到出厂设置和重新安装WebStorm,但这仍然会自动填充。

我找到的唯一解决方法是每次手动清除Node选项。我没有保存的模板应该从中获取这些选项。

Node选项:--watch --experimental-vm-modules

已尝试:

  • 重新安装WebStorm
  • 在WebStorm中重置默认设置
  • 删除所有现有的jest模板
英文:

When clicking run/debug within WebStorm it fails for Jest tests. The reason being the Node options in the jest configuration are set to --watch --experimental-vm-modules which fails.

I've tried clearing all my templates, resetting to factory settings and reinstalling WebStorm - but this still pre-populates.

The only solution I've found is to manually clear the Node options each time. I've no saved templates that it should be pulling these options from.

Node Options: --watch --experimental-vm-modules

Tried already:

  • Reinstalling WebStorm
  • Resetting defaulting settings in WebStorm
  • Deleting all existing jest templates

答案1

得分: 1

experimental-vm-modules标志会自动添加到package.json中如果你有type: module(参见WEB-52967)。但--watch通常不会自动添加。请检查您的Jest运行配置模板在Run > Edit Configurations, Edit configurations templates

英文:

The experimental-vm-modules flag is auto-added if you have type: module in the package.json (see WEB-52967). But --watch is not normmally auto-added. Please check your Jest run configuration template in Run > Edit Configurations, Edit configurations templates

huangapple
  • 本文由 发表于 2023年1月10日 02:09:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/75061344.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定