Skip to content

Commit f867af5

Browse files
Merge pull request #70 from github/dependabot/npm_and_yarn/npm_and_yarn-b448f38fe0
Bump ws from 8.17.1 to 8.21.1 in the npm_and_yarn group across 1 directory
2 parents f305457 + 432c10e commit f867af5

3 files changed

Lines changed: 76 additions & 47 deletions

File tree

karma.config.cjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
module.exports = function (config) {
2+
const browsers = process.env.CI ? ['ChromeHeadlessNoSandbox'] : ['ChromeHeadless']
3+
24
config.set({
35
frameworks: ['mocha', 'chai'],
46
files: [
@@ -9,7 +11,13 @@ module.exports = function (config) {
911
port: 9876,
1012
colors: true,
1113
logLevel: config.LOG_INFO,
12-
browsers: ['ChromeHeadless'],
14+
customLaunchers: {
15+
ChromeHeadlessNoSandbox: {
16+
base: 'ChromeHeadless',
17+
flags: ['--no-sandbox']
18+
}
19+
},
20+
browsers,
1321
autoWatch: false,
1422
singleRun: true,
1523
concurrency: Infinity

package-lock.json

Lines changed: 66 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"module": "esnext",
44
"target": "es2017",
55
"strict": true,
6+
"skipLibCheck": true,
67
"declaration": true,
78
"outDir": "dist",
89
"removeComments": true

0 commit comments

Comments
 (0)