Scott Prue
Scott Prue
Hey, thanks for reporting! I'll look into replicating - what is weird is that I thought there was a number of tests covering this 🤔
I was not able to replicate this in the [updated Typescript example](https://github.com/prescottprue/cypress-firebase/blob/main/examples/typescript/cypress/integration/Firestore.spec.ts#L29-L39) (updated to Typescript in Cypress folder as well as part of v2.2.0). From the looks of it the...
Glad to hear you are liking it! Thank you @ChrisvdLeij for reporting and to everyone for the upvotes on this issue Are you receiving an error when trying to do...
Something of note: Just using a UID that doesn't already exist creates the user if you are using `cy.login` since it is generating a custom auth token through firebase-admin which...
Yeah, definitely a valid use case, thanks for reaching out! Returning the snapshot (which contains a reference) is what I was describing in [#128](https://github.com/prescottprue/cypress-firebase/issues/128), but as noted that would mean...
@delete I think this will potentially cause issues if someone is trying to just write a slash path to a parameter instead of having that point to a document -...
I could see this being a feature for sure, but something to keep in mind is that if this is planned to be used for cleanup, like you were mentioning,...
That is fair, I definitely feel you there! Something to note though is that firebase-tools does have import capability for the Firestore emulator (through the --import flag when booting up...
Here is an example of what I was mentioning with firebase-tools-extra: ```bash #!/bin/sh # NOTE: firebase-extra is used since firebase-tools doesn't currently support emulators (see https://github.com/firebase/firebase-tools/issues/1957) # NOTE: Make sure...
Of note: as of [firebase-tools v8.5.0](https://github.com/firebase/firebase-tools/releases/tag/v8.5.0) there is now support for using `--import` with RTDB