Skip to content

Commit 3240c90

Browse files
committed
Now only run feature files that are NOT tagged as in_dev by default
1 parent 5f9a2f8 commit 3240c90

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ gulp.task('download-tck', function() {
202202
gulp.task('run-tck', ['download-tck', 'nodejs'], function() {
203203
return gulp.src(featureHome + "/*").pipe(cucumber({
204204
'steps': 'test/v1/tck/steps/*.js',
205-
'format': 'pretty'
205+
'format': 'pretty',
206+
'tags' : "~@in_dev"
206207
}));
207208
});
208209

0 commit comments

Comments
 (0)