We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac580e6 commit 2d4bc38Copy full SHA for 2d4bc38
tests/netlify-deploy.ts
@@ -148,9 +148,9 @@ export class NextDeployInstance extends NextInstance {
148
149
try {
150
const deployUrlRegex = new RegExp(
151
- /https:\/\/app\.netlify\.com\/sites\/(?<siteName>.+)\/deploys\/(?<deployID>[0-9a-f]+)/gm
+ /https:\/\/app\.netlify\.com\/sites\/(?<siteName>.+)\/deploys\/(?<deployID>[0-9a-f]+)/gm,
152
).exec(deployRes.stdout)
153
- const [ buildLogsUrl ] = deployUrlRegex || []
+ const [buildLogsUrl] = deployUrlRegex || []
154
const { deployID, siteName } = deployUrlRegex?.groups || {}
155
156
if (!deployID) {
0 commit comments