Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,21 @@ integration tests can pass, launch the tests as follows:
$ npm run test:integration -- --updateRules
```

The integration test suite skips the multi-tenancy Auth tests by default.
If you want to run these tests, an
[Identity Platform](https://cloud.google.com/identity-platform/) project with multi-tenancy
[enabled](https://cloud.google.com/identity-platform/docs/multi-tenancy-quickstart#enabling_multi-tenancy)
will be required.
An existing Firebase project can be upgraded to an Identity Platform project without
losing any functionality via the
[Identity Platform Marketplace Page](https://console.cloud.google.com/customer-identity).
Note that charges may be incurred for active users beyond the Identity Platform free tier.
The integration tests can be launched with these tests enabled as follows:

```bash
$ npm run test:integration -- --testMultiTenancy
```

### Repo Organization

Here are some highlights of the directory structure and notable source files
Expand Down
2 changes: 1 addition & 1 deletion createReleaseTarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ fi
echo

echo "[INFO] Running integration tests..."
npm run test:integration -- --updateRules
npm run test:integration -- --updateRules --testMultiTenancy
if [[ $? -ne 0 ]]; then
echo "Error: Integration tests failed."
exit 1
Expand Down