Skip to content

Commit 5c94d12

Browse files
committed
tests: fix tests
1 parent 8930977 commit 5c94d12

18 files changed

+1846
-1775
lines changed

integration_test/functions/src/v1/https-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as admin from "firebase-admin";
2-
import * as functions from "firebase-functions";
2+
import * as functions from "firebase-functions/v1";
33
import { REGION } from "../region";
44
import { sanitizeData } from "../utils";
55

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// export * from "./analytics-tests";
2-
// export * from "./auth-tests";
1+
export * from "./analytics-tests";
2+
export * from "./auth-tests";
33
export * from "./database-tests";
4-
// export * from "./firestore-tests";
4+
export * from "./firestore-tests";
55
// Temporarily disable http test - will not work unless running on projects w/ permission to create public functions.
66
// export * from "./https-tests";
7-
// export * from "./pubsub-tests";
8-
// export * from "./remoteConfig-tests";
9-
// export * from "./storage-tests";
10-
// export * from "./tasks-tests";
11-
// export * from "./testLab-tests";
7+
export * from "./pubsub-tests";
8+
export * from "./remoteConfig-tests";
9+
export * from "./storage-tests";
10+
export * from "./tasks-tests";
11+
export * from "./testLab-tests";

integration_test/functions/src/v2/index.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ import { setGlobalOptions } from "firebase-functions/v2";
22
import { REGION } from "../region";
33
setGlobalOptions({ region: REGION });
44

5-
// export * from "./alerts-tests";
5+
export * from "./alerts-tests";
66
export * from "./database-tests";
77
// export * from "./eventarc-tests";
8-
// export * from "./firestore-tests";
8+
export * from "./firestore-tests";
99
// Temporarily disable http test - will not work unless running on projects
1010
// w/ permission to create public functions.
1111
// export * from "./https-tests";
1212
// TODO: cannot deploy multiple auth blocking funcs at once. Only have one of
1313
// v2 identity or v1 auth exported at once.
1414
// export * from "./identity-tests";
15-
// export * from "./pubsub-tests";
16-
// export * from "./scheduler-tests";
17-
// export * from "./storage-tests";
18-
// export * from "./tasks-tests";
19-
// export * from "./testLab-tests";
20-
// export * from "./remoteConfig-tests";
15+
export * from "./pubsub-tests";
16+
export * from "./scheduler-tests";
17+
export * from "./storage-tests";
18+
export * from "./tasks-tests";
19+
export * from "./testLab-tests";
20+
export * from "./remoteConfig-tests";

0 commit comments

Comments
 (0)