File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
scripts/emulator-testing/emulators Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments