Skip to content

Commit 007b945

Browse files
author
amoldavsky
committed
added anguar 1.3.0 for tests
1 parent 4b5574b commit 007b945

File tree

3 files changed

+27902
-0
lines changed

3 files changed

+27902
-0
lines changed

gulpfile.js

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,35 @@
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 ));

0 commit comments

Comments
 (0)