Skip to content

Commit d48b3a2

Browse files
committed
remove extraneous comments
1 parent 900d316 commit d48b3a2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/bin-test/test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ async function retryUntil(
130130
}, timeoutMs);
131131
});
132132
const retry = (async () => {
133-
for (;;) {
133+
for (; ;) {
134134
if (await fn()) {
135135
break;
136136
}
@@ -210,7 +210,6 @@ async function runStdioDiscovery(modulePath: string): Promise<DiscoveryResult> {
210210

211211
proc.on("close", () => {
212212
clearTimeout(timeoutId);
213-
// Try to parse manifest
214213
const manifestMatch = stderr.match(/__FIREBASE_FUNCTIONS_MANIFEST__:([\s\S]+)/);
215214
if (manifestMatch) {
216215
const base64 = manifestMatch[1];
@@ -220,7 +219,6 @@ async function runStdioDiscovery(modulePath: string): Promise<DiscoveryResult> {
220219
return;
221220
}
222221

223-
// Try to parse error
224222
const errorMatch = stderr.match(/__FIREBASE_FUNCTIONS_MANIFEST_ERROR__:([\s\S]+)/);
225223
if (errorMatch) {
226224
resolve({ success: false, error: errorMatch[1] });

0 commit comments

Comments
 (0)