File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
"scripts" : {
5
5
"test" : " vitest --dom --coverage" ,
6
6
"serve:coverage" : " npx serve coverage" ,
7
- "emulator" : " firebase emulators:start --project demo-projectc " ,
7
+ "emulator" : " firebase emulators:start --project test-project " ,
8
8
"emulator:kill" : " lsof -t -i:4001 -i:8080 -i:9000 -i:9099 -i:9199 -i:8085 | xargs kill -9" ,
9
9
"check" : " pnpm biome check --write ./packages/react/src"
10
10
},
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import {
13
13
import { connectorConfig } from "@/dataconnect/default-connector" ;
14
14
15
15
const firebaseTestingOptions = {
16
- projectId : "demo -project" ,
16
+ projectId : "test -project" ,
17
17
apiKey : "test-api-key" ,
18
18
authDomain : "test-auth-domain" ,
19
19
} ;
@@ -38,7 +38,7 @@ if (!firebaseApp) {
38
38
39
39
async function wipeFirestore ( ) {
40
40
const response = await fetch (
41
- "http://localhost:8080/emulator/v1/projects/demo -project/databases/(default)/documents" ,
41
+ "http://localhost:8080/emulator/v1/projects/test -project/databases/(default)/documents" ,
42
42
{
43
43
method : "DELETE" ,
44
44
}
@@ -51,7 +51,7 @@ async function wipeFirestore() {
51
51
52
52
async function wipeAuth ( ) {
53
53
const response = await fetch (
54
- "http://localhost:9099/emulator/v1/projects/demo -project/accounts" ,
54
+ "http://localhost:9099/emulator/v1/projects/test -project/accounts" ,
55
55
{
56
56
method : "DELETE" ,
57
57
}
You can’t perform that action at this time.
0 commit comments