File tree 2 files changed +5
-2
lines changed
scripts/emulator-testing/emulators
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,8 @@ jobs:
118
118
run : cp config/ci.config.json config/project.json
119
119
- name : Run tests
120
120
run : cd packages/firestore && yarn run ${{ matrix.test-name }}
121
+ env :
122
+ EXPERIMENTAL_MODE : true
121
123
122
124
compat-test-firefox :
123
125
name : Test Firestore Compatible on Firefox
@@ -185,6 +187,7 @@ jobs:
185
187
run : cd packages/firestore && xvfb-run yarn run ${{ matrix.test-name }}
186
188
env :
187
189
BROWSERS : ' Firefox'
190
+ EXPERIMENTAL_MODE : true
188
191
189
192
# A job that fails if any required job in the test matrix fails,
190
193
# 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 {
22
22
23
23
constructor ( port : number , projectId = 'test-emulator' ) {
24
24
super (
25
- 'cloud-firestore-emulator-v1.14.4 .jar' ,
25
+ 'cloud-firestore-emulator-v1.18.1 .jar' ,
26
26
// Use locked version of emulator for test to be deterministic.
27
27
// The latest version can be found from firestore emulator doc:
28
28
// 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' ,
30
30
port
31
31
) ;
32
32
this . projectId = projectId ;
You can’t perform that action at this time.
0 commit comments