diff --git a/integration_test/functions/src/index.ts b/integration_test/functions/src/index.ts index 72c3e5099..1ee1a903f 100644 --- a/integration_test/functions/src/index.ts +++ b/integration_test/functions/src/index.ts @@ -124,6 +124,7 @@ export const integrationTests: any = functions .collection('tests') .doc(testId) .set({ test: testId }), + // Invoke a callable HTTPS trigger. callHttpsTrigger('callableTests', { foo: 'bar', testId }, baseUrl), // A Remote Config update to trigger the Remote Config tests. // admin.credential @@ -150,8 +151,6 @@ export const integrationTests: any = functions .storage() .bucket() .upload('/tmp/' + testId + '.txt'), - // Invoke a callable HTTPS trigger. - callHttpsTrigger('callableTests', { foo: 'bar', testId }), // Invoke the schedule for our scheduled function to fire callScheduleTrigger('schedule', 'us-central1'), ])