英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论