Skip to content

Commit e463f85

Browse files
authored
Change typing info to fix compiler error (#1093)
1 parent 27bc77f commit e463f85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration_test/functions/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ async function updateRemoteConfig(
115115
}
116116
}
117117

118-
function v1Tests(testId: string, accessToken: string): Array<Promise<void>> {
118+
function v1Tests(testId: string, accessToken: string): Array<Promise<unknown>> {
119119
return [
120120
// A database write to trigger the Firebase Realtime Database tests.
121121
admin

integration_test/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function cleanup {
114114
build_sdk
115115
delete_all_functions
116116

117-
for version in 12 14 16; do
117+
for version in 14 16; do
118118
create_package_json $TIMESTAMP $version "^10.0.0"
119119
install_deps
120120
announce "Re-deploying the same functions to Node $version runtime ..."

0 commit comments

Comments
 (0)