Skip to content

Commit 475dc24

Browse files
committed
chore: format fix
1 parent 2e12201 commit 475dc24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/utils/create-e2e-fixture.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,9 +280,9 @@ async function deploySite(
280280
const output = await readFile(join(siteDir, outputFile), 'utf-8')
281281

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

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

0 commit comments

Comments
 (0)