We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e12201 commit 475dc24Copy full SHA for 475dc24
tests/utils/create-e2e-fixture.ts
@@ -280,9 +280,9 @@ async function deploySite(
280
const output = await readFile(join(siteDir, outputFile), 'utf-8')
281
282
const { siteName, deployID } =
283
- new RegExp(/app\.netlify\.com\/sites\/(?<siteName>[^\/]+)\/deploys\/(?<deployID>[0-9a-f]+)/gm).exec(
284
- output,
285
- )?.groups || {}
+ new RegExp(
+ /app\.netlify\.com\/sites\/(?<siteName>[^\/]+)\/deploys\/(?<deployID>[0-9a-f]+)/gm,
+ ).exec(output)?.groups || {}
286
287
if (!deployID) {
288
throw new Error('Could not extract DeployID from the build logs')
0 commit comments