mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Try Windows
This commit is contained in:
parent
d1ab14c74e
commit
bbb57ed401
8
.github/workflows/CI.yml
vendored
8
.github/workflows/CI.yml
vendored
|
@ -8,14 +8,10 @@ on:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: yarn install --immutable
|
||||
- run: yarn prettier:check
|
||||
- run: yarn build:all
|
||||
- run: yarn lint:all
|
||||
- uses: GabrielBB/xvfb-action@v1
|
||||
with:
|
||||
run: yarn test:all
|
||||
- run: yarn test:all
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module.exports = {
|
||||
setupFilesAfterEnv: ['<rootDir>/test/setup.js'],
|
||||
testPathIgnorePatterns: ['<rootDir>/examples', '<rootDir>/test/chrome'],
|
||||
testPathIgnorePatterns: ['<rootDir>/examples'],
|
||||
};
|
||||
|
|
|
@ -17,11 +17,7 @@ describe('Chrome extension', function () {
|
|||
.usingServer(`http://localhost:${port}`)
|
||||
.withCapabilities({
|
||||
chromeOptions: {
|
||||
args: [
|
||||
'--no-sandbox',
|
||||
'--disable-dev-shm-usage',
|
||||
`load-extension=${path}`,
|
||||
],
|
||||
args: [`load-extension=${path}`],
|
||||
},
|
||||
})
|
||||
.forBrowser('chrome')
|
||||
|
|
|
@ -17,11 +17,7 @@ describe('DevTools panel for Electron', function () {
|
|||
.withCapabilities({
|
||||
chromeOptions: {
|
||||
binary: electronPath,
|
||||
args: [
|
||||
'--no-sandbox',
|
||||
'--disable-dev-shm-usage',
|
||||
`app=${join(__dirname, 'fixture')}`,
|
||||
],
|
||||
args: [`app=${join(__dirname, 'fixture')}`],
|
||||
},
|
||||
})
|
||||
.forBrowser('electron')
|
||||
|
|
Loading…
Reference in New Issue
Block a user