本文介绍了开玩笑如何在package.json脚本中设置文件模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在packadge.json中
I have in packadge.json
"scripts": {
"test": "cross-env NODE_ENV=test jest"
},
我要测试所有文件的匹配模式
I want to test all files match pattern
front/**/*.test.js
但如果
"scripts": {
"test": "cross-env NODE_ENV=test jest \"front/**/*.test.js\""
},
我有一个错误
Invalid testPattern front/**/*.test.js supplied. Running all tests instead.
那么,如何将文件名模式传递给玩笑?
So, how could I pass file names pattern to jest?
谢谢.
推荐答案
根据文档,您应该为模式使用正则表达式.因此,在您的情况下,您可能会这样写:
According to the documentation you are supposed to use a regex for your pattern. So in your case you probably would write something like this:
"scripts": {
"test": "cross-env NODE_ENV=test jest \"front/.*\\.test\\.js\""
}
这篇关于开玩笑如何在package.json脚本中设置文件模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!