Skip to content

Commit ef8593a

Browse files
mrstorkactions-user
authored andcommitted
chore: format with prettier
1 parent 42b9342 commit ef8593a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/utils/create-e2e-fixture.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,10 @@ async function deploySite(
278278
await execaCommand(cmd, { cwd: siteDir, all: true }).pipeAll?.(join(siteDir, outputFile))
279279
const output = await readFile(join(siteDir, outputFile), 'utf-8')
280280

281-
const [url] = new RegExp(/https:\/\/app\.netlify\.com\/sites\/next-runtime-testing\/deploys\/^[0-9a-f]+/gm).exec(output) || []
281+
const [url] =
282+
new RegExp(
283+
/https:\/\/app\.netlify\.com\/sites\/next-runtime-testing\/deploys\/^[0-9a-f]+/gm,
284+
).exec(output) || []
282285
if (!url) {
283286
throw new Error('Could not extract the URL from the build logs')
284287
}

0 commit comments

Comments
 (0)