Skip to content

Commit

Permalink
Merge pull request #7515 from cjcenizal/grunt/visual-regression-subtask
Browse files Browse the repository at this point in the history
Move visualRegression subtask from npm scripts to grunt task.
  • Loading branch information
cjcenizal authored Jun 21, 2016
2 parents 2694a84 + ca9b085 commit 5caa6c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"Tim Sullivan <tim@elastic.co>"
],
"scripts": {
"test": "grunt test; grunt test:visualRegression",
"test": "grunt test",
"test:dev": "grunt test:dev",
"test:quick": "grunt test:quick",
"test:browser": "grunt test:browser",
Expand Down
3 changes: 2 additions & 1 deletion tasks/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ module.exports = function (grunt) {
grunt.task.run(_.compact([
!grunt.option('quick') && 'eslint:source',
'licenses',
'test:quick'
'test:quick',
'test:visualRegression'
]));
});

Expand Down

0 comments on commit 5caa6c0

Please sign in to comment.