mirror of https://github.com/waku-org/js-waku.git
remove webkit from running (#1621)
This commit is contained in:
parent
408f5702e4
commit
077d9a76d3
|
@ -3,7 +3,6 @@ const playwright = require('playwright');
|
||||||
|
|
||||||
process.env.CHROME_BIN = playwright.chromium.executablePath();
|
process.env.CHROME_BIN = playwright.chromium.executablePath();
|
||||||
process.env.FIREFOX_BIN = playwright.firefox.executablePath();
|
process.env.FIREFOX_BIN = playwright.firefox.executablePath();
|
||||||
process.env.WEBKIT_HEADLESS_BIN = playwright.webkit.executablePath();
|
|
||||||
|
|
||||||
module.exports = function (config) {
|
module.exports = function (config) {
|
||||||
config.set({
|
config.set({
|
||||||
|
@ -14,7 +13,7 @@ module.exports = function (config) {
|
||||||
},
|
},
|
||||||
envPreprocessor: ["CI"],
|
envPreprocessor: ["CI"],
|
||||||
reporters: ["progress"],
|
reporters: ["progress"],
|
||||||
browsers: ["ChromeHeadless", "FirefoxHeadless", "WebkitHeadless"],
|
browsers: ["ChromeHeadless", "FirefoxHeadless"],
|
||||||
singleRun: true,
|
singleRun: true,
|
||||||
client: {
|
client: {
|
||||||
mocha: {
|
mocha: {
|
||||||
|
|
Loading…
Reference in New Issue