npm test运行单个testcacse

像运行单个test case。但是按照Jest的-t发送参数给npm test,发现没有效果.

最后发现需要加上 -- 才行 。参见 Sending command line arguments to npm script

例如要运行testcase 'only defines words for current instance',执行下面的命令

npm test -- -t 'only defines words for current instance'

你可能感兴趣的:(小技巧)