diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8fc2ea95..52490718 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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 diff --git a/extension/jest.config.js b/extension/jest.config.js index 305991dd..bc9bb5d1 100644 --- a/extension/jest.config.js +++ b/extension/jest.config.js @@ -1,4 +1,4 @@ module.exports = { setupFilesAfterEnv: ['/test/setup.js'], - testPathIgnorePatterns: ['/examples', '/test/chrome'], + testPathIgnorePatterns: ['/examples'], }; diff --git a/extension/test/chrome/extension.spec.js b/extension/test/chrome/extension.spec.js index 8e77b1a6..203c754d 100644 --- a/extension/test/chrome/extension.spec.js +++ b/extension/test/chrome/extension.spec.js @@ -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') diff --git a/extension/test/electron/devpanel.spec.js b/extension/test/electron/devpanel.spec.js index c96a8b52..12110d4c 100644 --- a/extension/test/electron/devpanel.spec.js +++ b/extension/test/electron/devpanel.spec.js @@ -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')