Skip to content

Commit

Permalink
enable browser and remote integration tests (microsoft#137254)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt authored Nov 16, 2021
1 parent 8a7324f commit 6a25ae3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,20 @@ jobs:
- name: Run Unit Tests (Browser)
run: yarn test-browser --browser chromium

- name: Compile Integration Tests
run: yarn --cwd test/integration/browser compile

- name: Run Integration Tests (Electron)
run: .\scripts\test-integration.bat

- name: Run Integration Tests (Browser)
timeout-minutes: 10
run: .\resources\server\test\test-web-integration.bat --browser firefox

- name: Run Remote Integration Tests (Electron)
timeout-minutes: 10
run: .\resources\server\test\test-remote-integration.bat

linux:
name: Linux
runs-on: ubuntu-latest
Expand Down Expand Up @@ -140,10 +151,22 @@ jobs:
id: browser-unit-tests
run: DISPLAY=:10 yarn test-browser --browser chromium

- name: Compile Integration Tests
run: yarn --cwd test/integration/browser compile

- name: Run Integration Tests (Electron)
id: electron-integration-tests
run: DISPLAY=:10 ./scripts/test-integration.sh

- name: Run Integration Tests (Browser)
id: browser-integration-tests
run: DISPLAY=:10 ./resources/server/test/test-web-integration.sh --browser chromium

- name: Run Remote Integration Tests (Electron)
id: electron-remote-integration-tests
timeout-minutes: 7
run: DISPLAY=:10 ./resources/server/test/test-remote-integration.sh

darwin:
name: macOS
runs-on: macos-latest
Expand Down Expand Up @@ -202,9 +225,19 @@ jobs:
- name: Run Unit Tests (Browser)
run: DISPLAY=:10 yarn test-browser --browser chromium

- name: Compile Integration Tests
run: yarn --cwd test/integration/browser compile

- name: Run Integration Tests (Electron)
run: DISPLAY=:10 ./scripts/test-integration.sh

- name: Run Integration Tests (Browser)
run: DISPLAY=:10 ./resources/server/test/test-web-integration.sh --browser webkit

- name: Run Remote Integration Tests (Electron)
timeout-minutes: 7
run: DISPLAY=:10 ./resources/server/test/test-remote-integration.sh

hygiene:
name: Hygiene, Layering and Monaco Editor
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6a25ae3

Please sign in to comment.