Skip to content

Commit 21c9b12

Browse files
committed
fix: prefix test project id with demo-
1 parent 40a7702 commit 21c9b12

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vitest/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
import { connectorConfig } from "@/dataconnect/default-connector";
1414

1515
const firebaseTestingOptions = {
16-
projectId: "test-project",
16+
projectId: "demo-project",
1717
apiKey: "test-api-key",
1818
authDomain: "test-auth-domain",
1919
};
@@ -38,7 +38,7 @@ if (!firebaseApp) {
3838

3939
async function wipeFirestore() {
4040
const response = await fetch(
41-
"http://localhost:8080/emulator/v1/projects/test-project/databases/(default)/documents",
41+
"http://localhost:8080/emulator/v1/projects/demo-project/databases/(default)/documents",
4242
{
4343
method: "DELETE",
4444
}
@@ -51,7 +51,7 @@ async function wipeFirestore() {
5151

5252
async function wipeAuth() {
5353
const response = await fetch(
54-
"http://localhost:9099/emulator/v1/projects/test-project/accounts",
54+
"http://localhost:9099/emulator/v1/projects/demo-project/accounts",
5555
{
5656
method: "DELETE",
5757
}

0 commit comments

Comments
 (0)