Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit 77f7a9f

Browse files
committed
test(angular): add ~1.4.0 branch tests
1 parent 178b894 commit 77f7a9f

File tree

6 files changed

+34845
-0
lines changed

6 files changed

+34845
-0
lines changed

gulpfile.js

+11
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,17 @@ gulp.task('karma:travis~1.2.0', gulp.series('ng:test/templates', function karmaT
103103
process.exit(code);
104104
});
105105
}));
106+
gulp.task('karma:travis~1.4.0', gulp.series('ng:test/templates', function karmaTravis140() {
107+
karma.start({
108+
configFile: path.join(__dirname, 'test/~1.4.0/karma.conf.js'),
109+
browsers: ['PhantomJS'],
110+
reporters: ['dots'],
111+
singleRun: true
112+
}, function(code) {
113+
gutil.log('Karma has exited with ' + code);
114+
process.exit(code);
115+
});
116+
}));
106117

107118
gulp.task('test', gulp.series('ng:test/templates', gulp.parallel('jshint', 'karma:unit')));
108119
gulp.task('test:timezone', function() {

0 commit comments

Comments
 (0)