Skip to content

Commit 835a013

Browse files
committed
remove unneeded xvfbs
1 parent d94598c commit 835a013

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-all.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
- name: Run unit tests
9393
# Ignore auth and firestore since they're handled in their own separate jobs.
9494
run: |
95-
xvfb-run yarn lerna run --ignore '{firebase-messaging-integration-test,@firebase/auth*,@firebase/firestore*,firebase-firestore-integration-test}' test:ci
95+
yarn lerna run --ignore '{firebase-messaging-integration-test,@firebase/auth*,@firebase/firestore*,firebase-firestore-integration-test}' test:ci
9696
node scripts/print_test_logs.js
9797
env:
9898
FIREBASE_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }}
@@ -178,7 +178,7 @@ jobs:
178178
run: echo "FIREBASE_CI_TEST_START_TIME=$(date +%s)" >> $GITHUB_ENV
179179
- name: Run unit tests
180180
run: |
181-
xvfb-run yarn lerna run test:ci --scope '@firebase/firestore*'
181+
yarn lerna run test:ci --scope '@firebase/firestore*'
182182
node scripts/print_test_logs.js
183183
env:
184184
FIREBASE_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }}
@@ -218,7 +218,7 @@ jobs:
218218
- run: yarn
219219
- run: yarn build:${{ matrix.persistence }}
220220
working-directory: integration/firestore
221-
- run: xvfb-run yarn karma:singlerun
221+
- run: yarn karma:singlerun
222222
working-directory: integration/firestore
223223
env:
224224
FIREBASE_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }}

0 commit comments

Comments
 (0)