Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 2 additions & 3 deletions packages/edge-bundler/node/bundler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ test('Loads edge functions from the Frameworks API', async () => {
await cleanup()
})

describe.skipIf(lt(denoVersion, '2.4.2'))(
describe.skipIf(lt(denoVersion, '2.4.3'))(
'Produces a tarball bundle',
() => {
test('With only local imports', async () => {
Expand Down Expand Up @@ -790,8 +790,7 @@ describe.skipIf(lt(denoVersion, '2.4.2'))(
await rm(vendorDirectory.path, { force: true, recursive: true })
})

// TODO: https://github.com/denoland/deno/issues/30187
test.todo('Using npm modules', async () => {
test('Using npm and remote modules', async () => {
const systemLogger = vi.fn()
const { basePath, cleanup, distPath } = await useFixture('imports_npm_module', { copyDirectory: true })
const sourceDirectory = join(basePath, 'functions')
Expand Down
1 change: 1 addition & 0 deletions packages/edge-bundler/node/formats/tarball.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export const bundle = async ({
importMap.withNodeBuiltins().toDataURL(),
'--quiet',
'--code-splitting',
'--allow-import',
'--outdir',
bundleDir.path,
...functions.map((func) => func.path),
Expand Down
Loading