Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
4afe1102
...
4afe11024a23183cb33a4d95f803873b8898c951
authored
2014-04-14 21:08:31 +0200
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge pull request #879 from mattbasta/patch-1
Remove spurious fs calls
2 parents
ff12c243
1283004a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
modules/tester.js
modules/tester.js
View file @
4afe110
...
...
@@ -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
();
};
...
...
Please
register
or
sign in
to post a comment