mcfly-io / generator-sublime

Yeoman generator for scaffolfding the standard configuration root files like .gitignore, .jshintrc, .jscsrc etc...
8 stars 10 forks source link

Add an option to bypass dist when running gulp e2e #272

Closed thaiat closed 9 years ago

thaiat commented 9 years ago

gulp e2e --skip-dist

gulp.task('e2e', 'Runs e2e tests.', function(done) {
    runSequence(
        ['webdriver-update', args.skipDist ? 'wait' : 'dist'],
        'e2e:serve',
        'e2e:run',
        done
    );
});