Skip to content

Commit

Permalink
fix typo in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
schipiga committed Dec 27, 2017
1 parent 304003a commit ebda01c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/runner.js
Expand Up @@ -63,7 +63,7 @@ session(() => {
if (fileName.startsWith("test") && fileName.endsWith(".js")) {
require(filePath);
};
if (fs.lstatSync(filePath).isDirectory()) {
if (fs.statSync(filePath).isDirectory()) {
loadTests(filePath);
};
};
Expand Down

0 comments on commit ebda01c

Please sign in to comment.