Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit d6cd12b

Browse files
author
Jacob Wenger
committed
Merge pull request #475 from jamestalmage/build-fix
Add concat step to e2e test builds.
2 parents 15e76f3 + 565cbbd commit d6cd12b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Gruntfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ module.exports = function(grunt) {
9595
configFile: 'tests/automatic_karma.conf.js'
9696
},
9797
manual: {
98-
configFile: 'tests/manual_karma.conf.js',
98+
configFile: 'tests/manual_karma.conf.js'
9999
},
100100
singlerun: {},
101101
watch: {
102102
autowatch: true,
103-
singleRun: false,
103+
singleRun: false
104104
},
105105
saucelabs: {
106106
configFile: 'tests/sauce_karma.conf.js'
@@ -144,7 +144,7 @@ module.exports = function(grunt) {
144144
// Single run tests
145145
grunt.registerTask('test', ['test:unit', 'test:e2e']);
146146
grunt.registerTask('test:unit', ['karma:singlerun']);
147-
grunt.registerTask('test:e2e', ['connect:testserver', 'protractor:singlerun']);
147+
grunt.registerTask('test:e2e', ['concat', 'connect:testserver', 'protractor:singlerun']);
148148
grunt.registerTask('test:manual', ['karma:manual']);
149149

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

154154
// Sauce tasks
155155
grunt.registerTask('sauce:unit', ['karma:saucelabs']);
156-
grunt.registerTask('sauce:e2e', ['connect:testserver', 'protractor:saucelabs']);
156+
grunt.registerTask('sauce:e2e', ['concat', 'connect:testserver', 'protractor:saucelabs']);
157157

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

0 commit comments

Comments
 (0)