diff options
author | Alan Pearce | 2017-12-21 12:08:09 +0100 |
---|---|---|
committer | Alan Pearce | 2017-12-21 12:08:09 +0100 |
commit | dcc169f7d3d291e863dd133ef4f133f40af0481c (patch) | |
tree | b368b99052d70061c1caee7be16ab204f3cb8fd3 /emacs/.emacs.d | |
parent | 40d25b9213259eb9a083882ffdf9108ae306c706 (diff) | |
download | nixfiles-dcc169f7d3d291e863dd133ef4f133f40af0481c.tar.lz nixfiles-dcc169f7d3d291e863dd133ef4f133f40af0481c.tar.zst nixfiles-dcc169f7d3d291e863dd133ef4f133f40af0481c.zip |
Emacs: Use more inclusive test path for mocha
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r-- | emacs/.emacs.d/main.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index ed826c29..cbd2d3e9 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -2115,7 +2115,7 @@ With prefix TO-CURRENT-BUFFER, insert command output into buffer." (defun mocha-test-project () "Test the current project." (interactive) - (mocha-run "'./{src,test}/**/*.test.js'")))) + (mocha-run "'./{src,lib,test}/**/*.test.js'")))) ;;;;;;; js2-refactor |