We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d140a2 commit bb430daCopy full SHA for bb430da
.travis.yml
@@ -0,0 +1,23 @@
1
+dist: trusty
2
+sudo: false
3
+
4
+language: node_js
5
+node_js:
6
+ - '8'
7
8
+addons:
9
+ apt:
10
+ sources:
11
+ - google-chrome
12
+ packages:
13
+ - google-chrome-stable
14
15
+cache:
16
+ directories:
17
+ - ./node_modules
18
19
+install:
20
+ - npm install
21
22
+script:
23
+ - npm run test -- --watch=false --no-progress --browsers=ChromeHeadlessNoSandbox
src/karma.conf.js
@@ -21,6 +21,12 @@ module.exports = function (config) {
fixWebpackSourcePaths: true
},
reporters: ['progress', 'kjhtml'],
24
+ customLaunchers: {
25
+ ChromeHeadlessNoSandbox: {
26
+ base: 'ChromeHeadless',
27
+ flags: ['--no-sandbox']
28
+ }
29
+ },
30
port: 9876,
31
colors: true,
32
logLevel: config.LOG_INFO,
0 commit comments