You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Limited the number of documents in the collection viewer to 9500. (#935)
* Limited the number of documents in the collection viewer to 9500. This
is to resolve an issue where the Firestore emulator is hitting a 10k
webchannel queue limit.
* Lint
* Lint
* Update Collection.tsx
Removed a trailing comma on import list.
firebase emulators:exec --project sample --only firestore 'npm test AddCollectionDialog.test.tsx'
87
+
firebase emulators:exec --project demo-test --only firestore 'npm test AddCollectionDialog.test.tsx'
88
88
```
89
89
90
90
To disable the Jest interactive mode use the flag `watchAll=false` like so:
91
91
92
92
```bash
93
-
firebase emulators:exec --project sample --only firestore 'npm test -- --watchAll=false'
93
+
firebase emulators:exec --project demo-test --only firestore 'npm test -- --watchAll=false'
94
94
```
95
95
96
96
If you get port conflict errors, make sure to stop other instances of the Firebase Emulator Suite (e.g. the one you've started for the development server above) and try again.
0 commit comments