@@ -202,10 +202,13 @@ module.exports = function (grunt) {
202
202
} ,
203
203
shell : {
204
204
testMinimal : {
205
- command : 'bower install angular#=1.0.8 angular-mocks#=1.0.8 angular-sanitize#=1.0.8 --config.directory=. --config.cwd=testDependencies'
205
+ command : 'bower install angular#=1.0.8 angular-mocks#=1.0.8 angular-sanitize#=1.0.8 angular-ui-router#=0.2.0 --config.directory=. --config.cwd=testDependencies'
206
206
} ,
207
207
test1dot2 : {
208
- command : 'bower install angular#=1.2.18 angular-mocks#=1.2.18 angular-sanitize#=1.2.18 --config.directory=. --config.cwd=testDependencies'
208
+ command : 'bower install angular#=1.2.18 angular-mocks#=1.2.18 angular-sanitize#=1.2.18 angular-ui-router#=0.2.15 --config.directory=. --config.cwd=testDependencies'
209
+ } ,
210
+ testLatest : {
211
+ command : 'bower install angular angular-mocks angular-sanitize angular-ui-router --config.directory=. --config.cwd=testDependencies'
209
212
}
210
213
}
211
214
@@ -227,9 +230,10 @@ module.exports = function (grunt) {
227
230
grunt . loadNpmTasks ( 'grunt-shell' ) ;
228
231
grunt . loadNpmTasks ( 'grunt-text-replace' ) ;
229
232
230
- grunt . registerTask ( 'test' , [ 'jshint' , 'testMin' , 'test1dot2' ] ) ;
233
+ grunt . registerTask ( 'test' , [ 'jshint' , 'testMin' , 'test1dot2' , 'testLatest' ] ) ;
231
234
grunt . registerTask ( 'testMin' , [ 'clean:test' , 'shell:testMinimal' , 'karma' ] ) ;
232
235
grunt . registerTask ( 'test1dot2' , [ 'clean:test' , 'shell:test1dot2' , 'karma' ] ) ;
236
+ grunt . registerTask ( 'testLatest' , [ 'clean:test' , 'shell:testLatest' , 'karma' ] ) ;
233
237
234
238
grunt . registerTask ( 'default' , [ 'test' , 'concat:dev' , 'uglify:dev' ] ) ;
235
239
0 commit comments