Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"@netlify/build": "^35.0.5",
"@netlify/config": "^24.0.2",
"@netlify/edge-bundler": "^14.5.0",
"@netlify/edge-functions-bootstrap": "^2.14.0",
"@netlify/edge-functions": "^2.17.0",
"@netlify/eslint-config-node": "^7.0.1",
"@netlify/functions": "^4.2.1",
Expand Down
4 changes: 2 additions & 2 deletions tests/utils/fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { assert, vi } from 'vitest'
import { type NetlifyPluginConstants, type NetlifyPluginOptions } from '@netlify/build'
import { resolveConfig as resolveNetlifyConfig } from '@netlify/config'
import { bundle, serve } from '@netlify/edge-bundler'
import { getURL as getBootstrapURL } from '@netlify/edge-functions-bootstrap/version'
import { zipFunctions } from '@netlify/zip-it-and-ship-it'
import { execaCommand } from 'execa'
import getPort from 'get-port'
Expand Down Expand Up @@ -32,8 +33,7 @@ import { BLOB_TOKEN } from './constants.mjs'
import { type FixtureTestContext } from './contexts.js'
import { setNextVersionInFixture } from './next-version-helpers.mjs'

const bootstrapURL =
'https://6877afcf20679a00086bab1c--edge.netlify.com/bootstrap/index-combined.ts'
const bootstrapURL = await getBootstrapURL()
const actualCwd = await vi.importActual<typeof import('process')>('process').then((p) => p.cwd())
const eszipHelper = join(actualCwd, 'tools/deno/eszip.ts')

Expand Down
Loading