-
Howdy! I'm pretty to the react / firebase community, but I've seen that we are missing operation string |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi there! Someone else asked about this recently, the first thing to make sure of is that both firebase-android-sdk and firebase-ios-sdk have support - sometimes they add one before the other. In this case I believe they both have it now Second thing is to find an analogous PR if possible, and with this one we are in luck as there was a PR recently that added a query modifier recently https://github.com/invertase/react-native-firebase/pull/3702/files If you look through it's basically:
It honestly looked to me like the testing was the largest chunk of code, but having developed a feature in react-native-firebase before I can say you can't skip that step, as a test-driven development style is really the only way to go in this system. To that end the testing module has a good document: https://github.com/invertase/react-native-firebase/blob/master/tests/README.md When I did a feature recently I found it to be a multi-hour job vs multi-day but I was pretty focused and got the dev environment set up quickly and started with the e2e tests right away by creating a new e2e test and then limiting the test run to just that test, after which point I was moving quickly The only warning I can give is that at this point we have a problem that I just noticed today and have not solved yet where the tests project is not compatible with Xcode 12 #4397 and until I fix that, it means developing features is either impossible or you have to install Xcode11 side by side. I will fix it quickly though as a blocker like that is not ok Hope this helps, and I'd be happy to collaborate with any questions you have if you take a chance at it |
Beta Was this translation helpful? Give feedback.
Hi there! Someone else asked about this recently, the first thing to make sure of is that both firebase-android-sdk and firebase-ios-sdk have support - sometimes they add one before the other. In this case I believe they both have it now
Second thing is to find an analogous PR if possible, and with this one we are in luck as there was a PR recently that added a query modifier recently https://github.com/invertase/react-native-firebase/pull/3702/files
If you look through it's basically:
It honestly looked to me like the testing was the lar…