📜  npm 只运行一个测试 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:12.348000             🧑  作者: Mango

代码示例1
n order to run a specific test, you'll need to use the jest command. npm test will not work. To access jest directly on the command line, install it via npm i -g jest-cli or yarn global add jest-cli.

Then simply run your specific test with jest bar.spec.js.

Note: You don't have to enter the full path to your test file. The argument is interpreted as a regexp. Any part of the full path that uniquely identifies a file suffices.