From a7b8cfa947b3d3ab5fa071083b3d24005b356d8a Mon Sep 17 00:00:00 2001 From: Andrew Joslin Date: Thu, 12 Jun 2014 08:39:19 -0600 Subject: [PATCH] chore(gulp snapshot): make it run demos task beforehand --- config/gulp-tasks/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/gulp-tasks/test.js b/config/gulp-tasks/test.js index e3a1e3fcf3f..6a6baf8ae47 100644 --- a/config/gulp-tasks/test.js +++ b/config/gulp-tasks/test.js @@ -69,7 +69,7 @@ module.exports = function(gulp, argv) { protractorHttpServer = http.createServer(app).listen(buildConfig.protractorPort); }); - gulp.task('snapshot', ['protractor-server'], function(done) { + gulp.task('snapshot', ['protractor-server', 'demos'], function(done) { snapshot(done, 'config/protractor.conf.js'); });