Skip to content

Commit

Permalink
chore(travis): need to clean and build before e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
c0bra committed Dec 23, 2013
1 parent c790245 commit 2362352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ module.exports = function(grunt) {
grunt.registerTask('test:ci', ['clean', 'jshint', 'ngtemplates', 'serialsauce']);
grunt.registerTask('test:docs', ['connect:testserver', 'protractor:docs']);
grunt.registerTask('test:e2e', ['connect:testserver', 'protractor:singlerun']);
grunt.registerTask('test:e2e:ci', ['connect:testserver', 'protractor:ci']);
grunt.registerTask('test:e2e:ci', ['clean', 'build', 'connect:testserver', 'protractor:ci']);

// Test
grunt.registerTask('test', 'Run tests on singleRun karma server', function() {
Expand Down

0 comments on commit 2362352

Please sign in to comment.