This commit is contained in:
Nathan Bierema 2021-06-19 16:36:15 -04:00
parent 13eb85578f
commit 0c6dc343fa
3 changed files with 9 additions and 5 deletions

View File

@ -16,4 +16,6 @@ jobs:
- run: yarn prettier:check
- run: yarn build:all
- run: yarn lint:all
- run: yarn test:all
- uses: GabrielBB/xvfb-action@v1
with:
run: yarn test:all

View File

@ -18,8 +18,9 @@ describe('Chrome extension', function () {
.withCapabilities({
chromeOptions: {
args: [
'no-sandbox',
'disable-dev-shm-usage',
'--no-sandbox',
'--disable-dev-shm-usage',
'--headless',
`load-extension=${path}`,
],
},

View File

@ -18,8 +18,9 @@ describe('DevTools panel for Electron', function () {
chromeOptions: {
binary: electronPath,
args: [
'no-sandbox',
'disable-dev-shm-usage',
'--no-sandbox',
'--disable-dev-shm-usage',
'--headless',
`app=${join(__dirname, 'fixture')}`,
],
},