gpt4 book ai didi

unit-testing - 如何使用 Create React App 运行特定测试

转载 作者:行者123 更新时间:2023-12-03 14:33:43 25 4
gpt4 key购买 nike

在使用 CRA v.1 创建的应用程序中,我需要运行特定的测试文件。我该怎么做?有--testPathIgnorePatterns添加到 npm test 的标志忽略文件或路径的脚本,但如何从命令行使用 CRA 运行特定的测试文件?

最佳答案

我通过使用 -- 做到了这一点将自定义参数传递给 npm 脚本。

可以在此处找到有关此选项的文档:https://docs.npmjs.com/cli/run-script

因此,要在 create-react-app 应用程序中运行单个测试,我运行以下命令:

npm run test -- -t 'test-name'

哪里 test-name是在开玩笑的描述函数中使用的值 -
describe('test-name', () => {
it('does something', () => { ... });
});

关于unit-testing - 如何使用 Create React App 运行特定测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56406064/

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