gpt4 book ai didi

javascript - Vue test utils 观看测试

转载 作者:行者123 更新时间:2023-12-05 00:55:02 25 4
gpt4 key购买 nike

我如何在编写和保存测试时保持 npm run test:unit 命令运行,我需要类似 npm run serve 的热重载,我试过 npm run test:unit --watch 但它不起作用。

最佳答案

我建议注册一个新的命令脚本来观看测试直接使用 vue-cli-service--watch 选项:

package.json

{
"scripts": {
// ...
"test:unit:watch": "vue-cli-service test:unit --watch",
}
}

然后你会运行:

npm run test:unit:watch // or yarn test:unit:watch

// You can even run for specific test as well

npm run test:unit:watch -- yourTest.spec.ts

关于javascript - Vue test utils 观看测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65448964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com