Commit 1283004a 1283004a5bf3efd2e5c20889ab6a0bb4c705d122 by Matt Basta

Remove spurious fs calls

`entry` already contains an absolute path. The path that is constructed is strange and unusual. This causes issues on Windows with TrifleJS (WIP).
1 parent ff12c243
...@@ -1274,7 +1274,7 @@ Tester.prototype.findTestFiles = function findTestFiles(dir) { ...@@ -1274,7 +1274,7 @@ Tester.prototype.findTestFiles = function findTestFiles(dir) {
1274 } 1274 }
1275 }); 1275 });
1276 return entries.filter(function _filter(entry) { 1276 return entries.filter(function _filter(entry) {
1277 return utils.isJsFile(fs.absolute(fs.pathJoin(dir, entry))); 1277 return utils.isJsFile(entry);
1278 }).sort(); 1278 }).sort();
1279 }; 1279 };
1280 1280
......