J Rob Gant
J Rob Gant
You are quite right. I apologize for not including tests. I can probably work on some next week. My thoughts would be to setup two primary objects with 1 hasOne...
Any chance this is going to be merged?
> @Pearce-Ropion if the original change is considered breaking, then the right approach is to revert it, and instead of provide it behind an option. Can you rebase this PR...
This causes my app confusion regularly in testing. The errors are always so difficult to hunt down because they are cryptic, but I need APP_INITIALIZER to complete before the tests...
Until this is resolved (seems like a recurring problem: #439 ) I added this to my buildspec.yml ```yml phases: install: runtime-versions: nodejs: 16 commands: # Until Chrome is part of...
The output is very noisy :-( Click to expand ``` [Container] 2022/10/24 17:35:07 Running command echo Installing Chrome -- 37 | Installing Chrome 38 | 39 | [Container] 2022/10/24 17:35:07...
I added: ```yml env: variables: DEBIAN_FRONTEND: "noninteractive" # apt-get be quieter ``` and changed the install to: ```yml - apt-get -o=Dpkg::Use-Pty=0 -qq install -y google-chrome-stable ``` A bit less noise...
@negberts without code that causes the issue it is hard to diagnose. One thing to check is that the `takeUntilDestroyed` operator is called in the same operation as the `.subscribe(`....
Make sure you are on the version of `eslint-plugin-rxjs-angular` that supports the alias. IIRC, you have to turn off `"checkComplete"` and `"checkDestroy"` for this to work, but that is after...
I think the issue here is that [[email protected]](https://github.com/FirebaseExtended/rxfire/blob/df3b56868b900a85554bbbdcbff90e304771d184/firestore/lite/interfaces.ts#L9) introduced a breaking change and now _requires_ [firebase@10](https://github.com/firebase/firebase-js-sdk/blob/b58a617f007a4ea2ffe82bc5b9c8ca9a7b7853d9/packages/firestore/src/lite-api/aggregate_types.ts#L74) to function. So sticking to [[email protected]](https://github.com/FirebaseExtended/rxfire/blob/83a366fc52e2de7216f9e24e3c2388a00233efc3/firestore/lite/interfaces.ts#L6) with [firebase@9](https://github.com/firebase/firebase-js-sdk/blob/74c3bfbfb64ae62f895e0e5c831b5584f70f6292/packages/firestore/src/lite-api/aggregate_types.ts#L74) is the solution. Adding this override...