mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Try no-sandbox
This commit is contained in:
parent
ddcd6614a8
commit
7cdeb82da4
|
@ -17,7 +17,7 @@ describe('Chrome extension', function () {
|
||||||
.usingServer(`http://localhost:${port}`)
|
.usingServer(`http://localhost:${port}`)
|
||||||
.withCapabilities({
|
.withCapabilities({
|
||||||
chromeOptions: {
|
chromeOptions: {
|
||||||
args: [`load-extension=${path}`],
|
args: ['--no-sandbox', `load-extension=${path}`],
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.forBrowser('chrome')
|
.forBrowser('chrome')
|
||||||
|
|
|
@ -17,7 +17,7 @@ describe('DevTools panel for Electron', function () {
|
||||||
.withCapabilities({
|
.withCapabilities({
|
||||||
chromeOptions: {
|
chromeOptions: {
|
||||||
binary: electronPath,
|
binary: electronPath,
|
||||||
args: [`app=${join(__dirname, 'fixture')}`],
|
args: ['--no-sandbox', `app=${join(__dirname, 'fixture')}`],
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.forBrowser('electron')
|
.forBrowser('electron')
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"prettify": "prettier --write .",
|
"prettify": "prettier --write .",
|
||||||
"prettier:check": "prettier --check .",
|
"prettier:check": "prettier --check .",
|
||||||
"test": "jest --onlyChanged",
|
"test": "jest --onlyChanged",
|
||||||
"test:all": "lerna run test"
|
"test:all": "jest"
|
||||||
},
|
},
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"extension",
|
"extension",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user