我已经像这样配置了 qunit 任务:
//For testing
qunit: {
all: ['Test/**/*.html']
},
如果我想排除一个(或两个)特定的 html 文件,是否有可能?我想做这样的事情:
//For testing
qunit: {
all: ['Test/**/*.html'],
options: {
exclude: ['Test/**/ToBeExcluded.html']
}
},
我阅读了 qunit 的文档,但没有看到类似的内容。有办法吗?谢谢