7 lines
281 B
TypeScript
7 lines
281 B
TypeScript
|
|
// Runs once before the full test suite.
|
||
|
|
// The Firestore emulator must already be running on port 8080 before running tests.
|
||
|
|
// Start it with: firebase emulators:start --only firestore
|
||
|
|
export default async function () {
|
||
|
|
process.env.FIRESTORE_EMULATOR_HOST = "127.0.0.1:8080";
|
||
|
|
}
|