Andrii Denysenko
Andrii Denysenko
I use `derry` to alias my Firebase Emulators command. Something along the lines of: ```firebase emulators:start --import ./emulator_data``` The problem is that when I terminate the emulators (with Ctrl/Cmd+C), they...
`openapi-codegen` relies on React Query, but there is no mention of this in the documentation. Initialy, when I was exploring this package, I had to do quite some digging to...
Failing test: ``` test('does not add a document if a transaction fails', () async { final db = FakeFirebaseFirestore(); try { await db.runTransaction((transaction) async { transaction.set(db.collection('test').doc(), {'name': 'Jane'}); // the...
- [ ] Products should be associated with their creators - [ ] Only creators and `admin`s should be able to edit a product - [ ] Create - [...
- [ ] An analytics event triggered when a user leaves the site with stuff in the cart - [ ] A function that listens for that event and sends...
- [x] Sync cart products with real ones - [x] Send an email with purchase confirmation - [x] Update Inventory size
Should seed some collection with static documents
- [ ] Firestore triggered function - [ ] Sync cart products with real ones - [ ] Send an email with purchase confirmation - [ ] Update Inventory size...
- [x] Only visible to registered users with `permissions.admin` of `true` - [x] Displays a list of all users - [ ] Toggles for each users' permissions - [ ]...
Currently, `thenReturnInOrder` does not accept `Future`s or `Stream`s (similarly to `thenReturn`). I would like to be able to write the following code: ``` when(methodReturningStream).thenAnswerInOrder([ Stream.fromIterable([1, 2, 3]), Stream.fromIterable([4, 5, 6]),...