We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66404fd commit 22fcdbaCopy full SHA for 22fcdba
Gruntfile.js
@@ -693,10 +693,10 @@ module.exports = function( grunt ) {
693
// Remove negations from list of suites
694
suites = _.filter( suites, function( suite ) { return ( !/^!/.test( suite ) ); } );
695
696
- if( types.length ){
+ if ( types.length ){
697
testDirs = [];
698
types.forEach(function( type ) {
699
- testDirs.push( "tests/" + type );
+ testDirs.push( type );
700
});
701
}
702
@@ -710,6 +710,7 @@ module.exports = function( grunt ) {
710
.difference( excludes )
711
.forEach( function( suite ) {
712
testDirs.forEach( function( dir ) {
713
+ dir = "tests/" + dir;
714
patterns = patterns.concat([
715
dir + "/" + suite + "/index.html",
716
dir + "/" + suite + "/*/index.html",
0 commit comments