fix for travis ci
This commit is contained in:
parent
262fb1d6cf
commit
bccbfc648e
|
@ -32,7 +32,13 @@ module.exports = function (config) {
|
||||||
colors: true,
|
colors: true,
|
||||||
logLevel: config.LOG_WARN,
|
logLevel: config.LOG_WARN,
|
||||||
autoWatch: false,
|
autoWatch: false,
|
||||||
browsers: ["ChromeHeadless"],
|
browsers: [process.env.TRAVIS ? "ChromeHeadlessNoSandbox" : "ChromeHeadless"],
|
||||||
|
customLaunchers: {
|
||||||
|
ChromeHeadlessNoSandbox: {
|
||||||
|
base: "ChromeHeadless",
|
||||||
|
flags: ["--no-sandbox"]
|
||||||
|
}
|
||||||
|
},
|
||||||
singleRun: true,
|
singleRun: true,
|
||||||
concurrency: Infinity
|
concurrency: Infinity
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue