File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
examples/react/useGetIdTokenQuery Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 55 "type" : " module" ,
66 "scripts" : {
77 "dev" : " vite" ,
8- "dev:emulator" : " cd ../../../ && firebase emulators:exec --project test-project 'cd examples/react/useGetIdTokenQuery && vite'" ,
8+ "dev:emulator" : " cd ../../../ && firebase emulators:exec --project demo- test-project 'cd examples/react/useGetIdTokenQuery && vite'" ,
99 "build" : " npx vite build" ,
1010 "preview" : " vite preview"
1111 },
Original file line number Diff line number Diff line change 44 "packageManager" : " pnpm@10.10.0" ,
55 "scripts" : {
66 "test" : " turbo test" ,
7- "test:emulator" : " firebase emulators:exec --project test-project \" pnpm turbo test:ci\" " ,
7+ "test:emulator" : " firebase emulators:exec --project demo- test-project \" pnpm turbo test:ci\" " ,
88 "serve:coverage" : " npx serve coverage" ,
9- "emulator" : " firebase emulators:start --project test-project" ,
9+ "emulator" : " firebase emulators:start --project demo- test-project" ,
1010 "emulator:kill" : " lsof -t -i:4001 -i:8080 -i:9000 -i:9099 -i:9199 -i:8085 -i:9399 -i:9299 | xargs kill -9" ,
1111 "format" : " biome check ." ,
1212 "format:fix" : " biome check . --write" ,
Original file line number Diff line number Diff line change 88 "test:ci" : " vitest --dom --coverage --run" ,
99 "build" : " tsup" ,
1010 "serve:coverage" : " npx serve coverage" ,
11- "emulator" : " firebase emulators:start --project test-project" ,
11+ "emulator" : " firebase emulators:start --project demo- test-project" ,
1212 "emulator:kill" : " lsof -t -i:4001 -i:8080 -i:9000 -i:9099 -i:9199 -i:8085 | xargs kill -9" ,
1313 "check" : " tsc --noEmit" ,
1414 "publish-package" : " pnpm run build && cd dist && npm publish"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import { expect } from "vitest";
1313import { connectorConfig } from "@/dataconnect/default-connector" ;
1414
1515const firebaseTestingOptions = {
16- projectId : "test-project" ,
16+ projectId : "demo- test-project" ,
1717 apiKey : "test-api-key" ,
1818 authDomain : "test-auth-domain" ,
1919} ;
@@ -38,7 +38,7 @@ if (!firebaseApp) {
3838
3939async 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- test-project/databases/(default)/documents" ,
4242 {
4343 method : "DELETE" ,
4444 } ,
@@ -51,7 +51,7 @@ async function wipeFirestore() {
5151
5252async 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- test-project/accounts" ,
5555 {
5656 method : "DELETE" ,
5757 } ,
You can’t perform that action at this time.
0 commit comments