Skip to content

Commit 68578a6

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 2dd88b8 + 34dca56 commit 68578a6

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

cloudbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
steps:
22
- id: build
3-
name: gcr.io/cloud-builders/npm:current
3+
name: gcr.io/flowcloud-153422/npm-chrome:current
44
entrypoint: '/bin/bash'
55
args:
66
- '-c'

tests/test-angular-project/src/karma.conf.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,18 @@ module.exports = function (config) {
2020
reports: ['html', 'lcovonly'],
2121
fixWebpackSourcePaths: true
2222
},
23-
reporters: ['progress', 'kjhtml'],
23+
reporters: ['dots', 'kjhtml'],
2424
port: 9876,
2525
colors: true,
2626
logLevel: config.LOG_INFO,
2727
autoWatch: true,
28-
browsers: ['Chrome'],
29-
singleRun: false
28+
browsers: ['ChromeHeadlessNoSandbox'],
29+
customLaunchers: {
30+
ChromeHeadlessNoSandbox: {
31+
base: 'ChromeHeadless',
32+
flags: ['--no-sandbox']
33+
}
34+
},
35+
singleRun: true
3036
});
3137
};

0 commit comments

Comments
 (0)