Skip to content

Commit

Permalink
tests: run cargo-tessel separately
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Oct 17, 2016
1 parent 697d641 commit c10b125
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = (grunt) => {
nodeunit: {
tests: [
'test/unit/*.js',
'!test/unit/cargo-tessel.js',
'test/unit/deployment/*.js',
]
},
Expand Down Expand Up @@ -94,8 +95,8 @@ module.exports = (grunt) => {
grunt.loadNpmTasks('grunt-jsbeautifier');


grunt.registerTask('test', ['jshint', 'jscs', 'nodeunit']);
grunt.registerTask('all', ['jsbeautifier', 'jshint', 'jscs', 'nodeunit']);
grunt.registerTask('test', ['jshint', 'jscs', 'nodeunit', 'nodeunit:files:cargo-tessel']);
grunt.registerTask('all', ['jsbeautifier', 'jshint', 'jscs', 'nodeunit', 'nodeunit:files:cargo-tessel']);

// Default task.
grunt.registerTask('default', ['all']);
Expand Down

0 comments on commit c10b125

Please sign in to comment.