Skip to content

Commit

Permalink
Merge 565cbbd into 3544c81
Browse files Browse the repository at this point in the history
  • Loading branch information
jamestalmage committed Nov 20, 2014
2 parents 3544c81 + 565cbbd commit 7b42409
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ module.exports = function(grunt) {
configFile: 'tests/automatic_karma.conf.js'
},
manual: {
configFile: 'tests/manual_karma.conf.js',
configFile: 'tests/manual_karma.conf.js'
},
singlerun: {},
watch: {
autowatch: true,
singleRun: false,
singleRun: false
},
saucelabs: {
configFile: 'tests/sauce_karma.conf.js'
Expand Down Expand Up @@ -144,7 +144,7 @@ module.exports = function(grunt) {
// Single run tests
grunt.registerTask('test', ['test:unit', 'test:e2e']);
grunt.registerTask('test:unit', ['karma:singlerun']);
grunt.registerTask('test:e2e', ['connect:testserver', 'protractor:singlerun']);
grunt.registerTask('test:e2e', ['concat', 'connect:testserver', 'protractor:singlerun']);
grunt.registerTask('test:manual', ['karma:manual']);

// Travis CI testing
Expand All @@ -153,7 +153,7 @@ module.exports = function(grunt) {

// Sauce tasks
grunt.registerTask('sauce:unit', ['karma:saucelabs']);
grunt.registerTask('sauce:e2e', ['connect:testserver', 'protractor:saucelabs']);
grunt.registerTask('sauce:e2e', ['concat', 'connect:testserver', 'protractor:saucelabs']);

// Watch tests
grunt.registerTask('test:watch', ['karma:watch']);
Expand Down

0 comments on commit 7b42409

Please sign in to comment.