We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a94c87c commit 9b0f3c8Copy full SHA for 9b0f3c8
functions/helloworld/test/index.test.js
@@ -24,14 +24,14 @@ const pubsub = require(`@google-cloud/pubsub`)();
24
const storage = require(`@google-cloud/storage`)();
25
26
const baseCmd = process.env.FUNCTIONS_CMD;
27
-const topicName = process.env.FUNCTIONS_TOPIC;
+const topicName = process.env.TOPIC;
28
29
const localFileName = `test.txt`;
30
const fileName = `test-${uuid.v4()}.txt`;
31
32
const BASE_URL = process.env.BASE_URL;
33
34
-const bucketName = process.env.FUNCTIONS_BUCKET;
+const bucketName = process.env.BUCKET;
35
const bucket = storage.bucket(bucketName);
36
37
test.before(`Must specify BASE_URL`, t => {
0 commit comments