Skip to content

Commit cd39e90

Browse files
committed
test: update project ID
1 parent 23d4969 commit cd39e90

File tree

11 files changed

+373
-2803
lines changed

11 files changed

+373
-2803
lines changed

_emulator/extensions/delete-user-data.env.local

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ LOCATION=europe-west2
22
FIRESTORE_QUERY_COLLECTION=queries
33
ENABLE_AUTO_DISCOVERY=true
44
AUTO_DISCOVERY_SEARCH_FIELDS=field1,field2
5-
SEARCH_FUNCTION=http://127.0.0.1:5001/demo-test/us-central1/findDocumentReferences
5+
SEARCH_FUNCTION=http://127.0.0.1:5001/dev-extensions-testing/us-central1/findDocumentReferences
66
AUTO_DISCOVERY_TOPIC=discovery
77
AUTO_DISCOVERY_SEARCH_DEPTH=4
88
DELETION_TOPIC=deletions
9-
PROJECT_ID=demo-test
9+
PROJECT_ID=dev-extensions-testing
1010
EXT_INSTANCE_ID = "demo-ext"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
LOCATION=europe-west2
2-
PROJECT_ID=demo-test
2+
PROJECT_ID=dev-extensions-testing
33
INTERNAL_STATE_PATH=_firebase_ext_/sharded_counter
44
SCHEDULE_FREQUENCY=1
55
INTERNAL_STATE_PATH=_firebase_ext_/sharded_counter

delete-user-data/functions/__tests__/helpers/setupEnvironment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ export default () => {
33
process.env.FIREBASE_FIRESTORE_EMULATOR_ADDRESS = "127.0.0.1:8080";
44
process.env.FIREBASE_AUTH_EMULATOR_HOST = "127.0.0.1:9099";
55
process.env.PUBSUB_EMULATOR_HOST = "127.0.0.1:8085";
6-
process.env.GOOGLE_CLOUD_PROJECT = "demo-test";
6+
process.env.GOOGLE_CLOUD_PROJECT = "dev-extensions-testing";
77
};

delete-user-data/functions/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"build:watch": "npm run clean && tsc --watch",
99
"clean": "rimraf lib",
1010
"compile": "tsc",
11-
"local:emulator": "cd ../../_emulator && firebase emulators:start -P demo-test",
12-
"test": "cd ../../_emulator && firebase emulators:exec jest -P demo-test",
11+
"local:emulator": "cd ../../_emulator && firebase emulators:start -P dev-extensions-testing",
12+
"test": "cd ../../_emulator && firebase emulators:exec jest -P dev-extensions-testing",
1313
"test:local": "concurrently \"npm run local:emulator\" \"jest\"",
1414
"test:watch": "concurrently \"npm run local:emulator\" \"jest --watch\"",
1515
"generate-readme": "firebase ext:info .. --markdown > ../README.md"
@@ -42,4 +42,4 @@
4242
"dotenv": "^16.0.2",
4343
"wait-port": "^0.2.9"
4444
}
45-
}
45+
}

0 commit comments

Comments
 (0)