Follow the subsequent instructions to develop, debug, unit test, and integration test FirebaseFunctions:
$ git clone git@github.com:firebase/firebase-ios-sdk.git
$ cd firebase-ios-sdk/Functions/Example
$ pod update
$ open FirebaseFunctions.xcworkspace
Choose the FirebaseFunctions_Tests scheme and press Command-u.
Before running the integration tests, you'll need to start a backend emulator for them to talk to.
- Make sure you have
npm
installed. - Run the backend startup script:
Backend/start.sh
It will usenpm install
to automatically download the libraries it needs to run the Cloud Functions Local Emulator. The first time you run it, it will ask for a projectId. You can put anything you like. It will be ignored. - Create the workspace in Functions/Example with
pod install
. open FirebaseFunctions.xcworkspace
- Choose the FirebaseFunctions_IntegrationTests scheme and press Command-u.
- When you are finished, you can press any key to stop the backend.