Skip to content

Commit 8382d98

Browse files
authored
Merge 035b560 into 3492066
2 parents 3492066 + 035b560 commit 8382d98

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/test-changed-firestore.yml

+3
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ jobs:
118118
run: cp config/ci.config.json config/project.json
119119
- name: Run tests
120120
run: cd packages/firestore && yarn run ${{ matrix.test-name }}
121+
env:
122+
EXPERIMENTAL_MODE: true
121123

122124
compat-test-firefox:
123125
name: Test Firestore Compatible on Firefox
@@ -185,6 +187,7 @@ jobs:
185187
run: cd packages/firestore && xvfb-run yarn run ${{ matrix.test-name }}
186188
env:
187189
BROWSERS: 'Firefox'
190+
EXPERIMENTAL_MODE: true
188191

189192
# A job that fails if any required job in the test matrix fails,
190193
# to be used as a required check for merging.

scripts/emulator-testing/emulators/firestore-emulator.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ export class FirestoreEmulator extends Emulator {
2222

2323
constructor(port: number, projectId = 'test-emulator') {
2424
super(
25-
'cloud-firestore-emulator-v1.14.4.jar',
25+
'cloud-firestore-emulator-v1.18.1.jar',
2626
// Use locked version of emulator for test to be deterministic.
2727
// The latest version can be found from firestore emulator doc:
2828
// https://firebase.google.com/docs/firestore/security/test-rules-emulator
29-
'https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.14.4.jar',
29+
'https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.18.1.jar',
3030
port
3131
);
3232
this.projectId = projectId;

0 commit comments

Comments
 (0)