We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2662fea commit b5f4be5Copy full SHA for b5f4be5
tests/netlify-deploy.ts
@@ -157,7 +157,7 @@ export class NextDeployInstance extends NextInstance {
157
throw new Error('Could not extract DeployID from the build logs')
158
}
159
160
- this._url = `https://${deployID}--${siteName}.netlify.app/`
+ this._url = `https://${deployID}--${siteName}.netlify.app`
161
this._parsedUrl = new URL(this._url)
162
this._deployId = deployID
163
this._shouldDeleteDeploy = !process.env.NEXT_TEST_SKIP_CLEANUP
tests/utils/create-e2e-fixture.ts
@@ -288,7 +288,7 @@ async function deploySite(
288
289
290
return {
291
- url: `https://${deployID}--${siteName}.netlify.app/`,
+ url: `https://${deployID}--${siteName}.netlify.app`,
292
deployID,
293
logs: output,
294
0 commit comments