File tree Expand file tree Collapse file tree 5 files changed +28945
-1
lines changed
Expand file tree Collapse file tree 5 files changed +28945
-1
lines changed Original file line number Diff line number Diff line change 22AngularJS ngMockE2E Async
33<br ><br >
44
5- Angular 1.3.0 [ ![ CircleCI] ( https://circleci.com/gh/amoldavsky/angular-mocks-async/tree/master.svg?style=shield )] ( https://circleci.com/gh/amoldavsky/angular-mocks-async )
5+ Angular 1.3.17 [ ![ CircleCI] ( https://circleci.com/gh/amoldavsky/angular-mocks-async/tree/master.svg?style=shield )] ( https://circleci.com/gh/amoldavsky/angular-mocks-async )
66
77Angular 1.5.8 [ ![ CircleCI] ( https://circleci.com/gh/amoldavsky/angular-mocks-async/tree/master.svg?style=shield )] ( https://circleci.com/gh/amoldavsky/angular-mocks-async )
88
Original file line number Diff line number Diff line change 1616 # - ./node_modules/karma-cli/bin/karma start karma.conf.js --single-run
1717 - ./node_modules/gulp-cli/bin/gulp.js test-unminified
1818 - ./node_modules/gulp-cli/bin/gulp.js test-minified
19+ - ./node_modules/gulp-cli/bin/gulp.js test-with-angular-1.3.17
1920
2021 post :
2122 - bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change 130130 ) ;
131131 } ) ;
132132
133+ gulp . task ( "test-with-angular-1.3.17" , function ( ) {
134+ gulp . src ( [
135+ 'test/angular-1.3.17/angular.js' ,
136+ 'test/angular-1.3.17/angular-mocks.js' ,
137+ 'dist/angular-mocks-async.min.js' ,
138+ 'test/angular-mocks-async-internal-tests.js' ,
139+ 'test/angular-mocks-async-test.js'
140+ ] , { "read" : false } ) . pipe (
141+ karma . server ( {
142+ singleRun : true ,
143+ autoWatch : true ,
144+ concurrency : Infinity ,
145+ port : 9876 ,
146+
147+ frameworks : [ "mocha" , "chai" ] ,
148+ browsers : [ "Chrome" ] ,
149+ basePath : "" ,
150+ exclude : [ ] ,
151+ preprocessors : {
152+ 'src/**/*.js' : [ 'coverage' ]
153+ } ,
154+ reporters : [ 'spec' , 'coverage' ] ,
155+ coverageReporter : {
156+ type : 'lcov' ,
157+ dir : 'coverage/'
158+ } ,
159+ colors : true
160+ } )
161+ ) ;
162+ } ) ;
163+
133164 gulp . task ( "test-with-angular-1.3.0" , function ( ) {
134165 gulp . src ( [
135166 'test/angular-1.3.0/angular.js' ,
You can’t perform that action at this time.
0 commit comments