File tree 2 files changed +13
-18
lines changed
2 files changed +13
-18
lines changed Original file line number Diff line number Diff line change 1
- # 2013-12028
1
+ ## 2014-02-04
2
+ * Update to give test dir precedence over spec dir
2
3
3
- Fixes:
4
4
5
- * fix Regex matching for in nearest spec. Does not require file to be in
6
- spec/test dir. Only needs to be a js/coffee file
5
+ ## 2013-12-28
6
+ * fix Regex matching for in nearest spec. Does not require file to be in
7
+ spec/test dir. Only needs to be a js/coffee file
7
8
8
9
9
- # 2013-12-19
10
+ ## 2013-12-19
11
+ * fix Regex matching for Mocha #GetNearestSpec
10
12
11
- Fixes:
12
13
13
- * fix Regex matching for Mocha #GetNearestSpec
14
-
15
-
16
- # 2013-12-17
17
-
18
- Features:
19
-
20
- * add ` major_filetype ` to find dominant filetype in current directory
21
- * refactor logic to find spec command (via language)
14
+ ## 2013-12-17
15
+ * add ` major_filetype ` to find dominant filetype in current directory
16
+ * refactor logic to find spec command (via language)
Original file line number Diff line number Diff line change @@ -99,10 +99,10 @@ endfunction
99
99
100
100
" All Specs
101
101
function ! RunAllSpecs ()
102
- if isdirectory (' spec' )
103
- let l: spec = " spec"
104
- elseif isdirectory (' test' )
102
+ if isdirectory (' test' )
105
103
let l: spec = " test"
104
+ elseif isdirectory (' spec' )
105
+ let l: spec = " spec"
106
106
else
107
107
let l: spec = " "
108
108
endif
You can’t perform that action at this time.
0 commit comments