我已经配置了这样的qunit任务:
//For testing
qunit: {
all: ['Test/**/*.html']
},
是否可以排除一个(或两个)特定的html文件?我想做这样的事情:
//For testing
qunit: {
all: ['Test/**/*.html'],
options: {
exclude: ['Test/**/ToBeExcluded.html']
}
},
我阅读了qunit的文档,但没有看到这样的东西。有办法吗?感谢
答案 0 :(得分:2)
QUnit grunt任务使用与大多数其他任务相同的globbing pattern匹配器。因此,您只需将否定模式添加到目标URL数组中即可:
qunit: {
all: ['Test/**/*.html', '!Test/**/ToBeExcluded.html']
}