标签: javascript node.js npm codeceptjs
在我的package.json中,scripts当前当前看起来像:
package.json
scripts
"scripts": { "test:e2e": "codeceptjs run" }
因此可以使用npm run test:e2e
npm run test:e2e
但是现在,我想运行类似npm run test:e2e -- --grep @tag的东西。目前,这是不可能的,因为它以引号(npm run test:e2e "--grep" "@tag"之类的引号引起来。)
npm run test:e2e -- --grep @tag
npm run test:e2e "--grep" "@tag"
有人知道如何解决吗?