File tree Expand file tree Collapse file tree 3 files changed +27902
-0
lines changed
Expand file tree Collapse file tree 3 files changed +27902
-0
lines changed Original file line number Diff line number Diff line change 130130 ) ;
131131 } ) ;
132132
133+ gulp . task ( "test-with-angular-1.3.0" , function ( ) {
134+ gulp . src ( [
135+ 'test/angular-1.3.0/angular.js' ,
136+ 'test/angular-1.3.0/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} ( require ) ) ;
You can’t perform that action at this time.
0 commit comments