Commit d6282d43 d6282d43177b3e1d63f6ed68d1721c2308997aa7 by Nicolas Perriault

finished refactor of Tester.assert*() methods

1 parent 6c726eeb
......@@ -42,7 +42,7 @@ var expected = [
].map(function(entry) {
return fs.pathJoin.apply(fs, [testDirRoot].concat(entry.split('/')));
});
t.assertEquals(files, [], 'findTestFiles() find test files and sort them');
t.assertEquals(files, expected, 'findTestFiles() find test files and sort them');
t.comment('Tester.assertTextExists()');
casper.start('tests/site/index.html', function() {
......