Skip to content

Commit e9fad96

Browse files
committed
chore(grunt): check files in src for ddescribe/iit
Previously, only files in test/ were checked. This does not capture end to end tests, which are in comments in src/.
1 parent 7e1950e commit e9fad96

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Gruntfile.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,11 @@ module.exports = function(grunt) {
231231

232232
"ddescribe-iit": {
233233
files: [
234+
'src/**/*.js',
234235
'test/**/*.js',
235-
'!test/ngScenario/DescribeSpec.js'
236+
'!test/ngScenario/DescribeSpec.js',
237+
'!src/ng/directive/booleanAttrs.js', // legitimate xit here
238+
'!src/ngScenario/**/*.js'
236239
]
237240
},
238241

0 commit comments

Comments
 (0)