Skip to content

Commit bf52436

Browse files
committed
tests passing
1 parent 4c8cdc6 commit bf52436

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

spec/config/commands.spec.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@ describe('orderedListOfCommands', function() {
1414
var stat = fs.statSync(path.join(__dirname, '../../lib/ionic', file));
1515
return !stat.isDirectory();
1616
})
17+
.filter(function(file) {
18+
// stats is private to us, so ignore it
19+
return file !== 'stats.js';
20+
})
1721
.map(function(file) {
1822
return file.replace('.js', '');
1923
})
2024
.sort();
25+
2126
expect(taskFileList).toEqual(listOfCommands.sort());
2227
});
2328
});

0 commit comments

Comments
 (0)