Skip to content

Commit 4dae38d

Browse files
committed
chore: format with prettier
1 parent b5f4be5 commit 4dae38d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/utils/create-e2e-fixture.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -279,9 +279,10 @@ async function deploySite(
279279
await execaCommand(cmd, { cwd: siteDir, all: true }).pipeAll?.(join(siteDir, outputFile))
280280
const output = await readFile(join(siteDir, outputFile), 'utf-8')
281281

282-
const { siteName, deployID } = new RegExp(
283-
/app\.netlify\.com\/sites\/(?<siteName>.+)\/deploys\/(?<deployID>[0-9a-f]+)/gm
284-
).exec(output)?.groups || {}
282+
const { siteName, deployID } =
283+
new RegExp(/app\.netlify\.com\/sites\/(?<siteName>.+)\/deploys\/(?<deployID>[0-9a-f]+)/gm).exec(
284+
output,
285+
)?.groups || {}
285286

286287
if (!deployID) {
287288
throw new Error('Could not extract DeployID from the build logs')

0 commit comments

Comments
 (0)