mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-26 07:59:48 +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}`)
|
||||
.withCapabilities({
|
||||
chromeOptions: {
|
||||
args: [`load-extension=${path}`],
|
||||
args: ['--no-sandbox', `load-extension=${path}`],
|
||||
},
|
||||
})
|
||||
.forBrowser('chrome')
|
||||
|
|
|
@ -17,7 +17,7 @@ describe('DevTools panel for Electron', function () {
|
|||
.withCapabilities({
|
||||
chromeOptions: {
|
||||
binary: electronPath,
|
||||
args: [`app=${join(__dirname, 'fixture')}`],
|
||||
args: ['--no-sandbox', `app=${join(__dirname, 'fixture')}`],
|
||||
},
|
||||
})
|
||||
.forBrowser('electron')
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"prettify": "prettier --write .",
|
||||
"prettier:check": "prettier --check .",
|
||||
"test": "jest --onlyChanged",
|
||||
"test:all": "lerna run test"
|
||||
"test:all": "jest"
|
||||
},
|
||||
"workspaces": [
|
||||
"extension",
|
||||
|
|
Loading…
Reference in New Issue
Block a user