Skip to content

Commit

Permalink
Merge pull request #1 from diegonogueira/master
Browse files Browse the repository at this point in the history
Regex toggle_test_file fixed
  • Loading branch information
valo authored May 17, 2017
2 parents 963bcdc + 59d5654 commit 6848cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/elixir-jump-around.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default {
isTestFilePath(filePath) {
return atom.project.getPaths().find((rootPath) => {
relativePath = path.relative(rootPath, filePath);
return relativePath.match(/^test\/.+_test\.exs$/);
return relativePath.match(/test\/.+_test\.exs$/);
});
},

Expand Down

0 comments on commit 6848cdd

Please sign in to comment.