From 94e37e7fafd88d5a0e01502ebbda31431b67d465 Mon Sep 17 00:00:00 2001 From: James Date: Tue, 19 Sep 2023 15:02:42 +0100 Subject: [PATCH] Update packages/next-on-pages/tests/_helpers/index.ts --- packages/next-on-pages/tests/_helpers/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/next-on-pages/tests/_helpers/index.ts b/packages/next-on-pages/tests/_helpers/index.ts index bad99a621..cb392aff9 100644 --- a/packages/next-on-pages/tests/_helpers/index.ts +++ b/packages/next-on-pages/tests/_helpers/index.ts @@ -403,8 +403,9 @@ export async function collectFunctionsFrom( }); await processOutputDir(outputDir, await getVercelStaticAssets()); - const collectedFunctions = - await collectFunctionConfigsRecursively(functionsDir); + const collectedFunctions = await collectFunctionConfigsRecursively( + functionsDir, + ); return { collectedFunctions, restoreFsMock: () => mockFs.restore() }; }