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) {
}
});
return entries.filter(function _filter(entry) {
return utils.isJsFile(fs.absolute(fs.pathJoin(dir, entry)));
return utils.isJsFile(entry);
}).sort();
};
......