Skip to content

Commit ade3857

Browse files
committed
chore(travis): add initial travis config
1 parent f93f501 commit ade3857

File tree

5 files changed

+564
-378
lines changed

5 files changed

+564
-378
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- "node"

karma.conf.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = function (config) {
77
frameworks: ['jasmine', '@angular-devkit/build-angular'],
88
plugins: [
99
require('karma-jasmine'),
10-
require('karma-chrome-launcher'),
10+
require('karma-phantomjs-launcher'),
1111
require('karma-remap-istanbul'),
1212
require('@angular-devkit/build-angular/plugins/karma')
1313
],
@@ -37,7 +37,7 @@ module.exports = function (config) {
3737
colors: true,
3838
logLevel: config.LOG_INFO,
3939
autoWatch: true,
40-
browsers: ['Chrome'],
41-
singleRun: false
40+
browsers: ['PhantomJS'],
41+
singleRun: true
4242
});
4343
};

0 commit comments

Comments
 (0)