Skip to content

Commit 466f94a

Browse files
authored
test: test optimized dep as ssr entry (#18301)
1 parent fafc7e2 commit 466f94a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

packages/vite/src/node/ssr/runtime/__tests__/server-runtime.spec.ts

+17
Original file line numberDiff line numberDiff line change
@@ -231,3 +231,20 @@ describe('module runner initialization', async () => {
231231
expect(action).toBeDefined()
232232
})
233233
})
234+
235+
describe('optimize-deps', async () => {
236+
const it = await createModuleRunnerTester({
237+
cacheDir: 'node_modules/.vite-test',
238+
ssr: {
239+
noExternal: true,
240+
optimizeDeps: {
241+
include: ['@vitejs/cjs-external'],
242+
},
243+
},
244+
})
245+
246+
it('optimized dep as entry', async ({ runner }) => {
247+
const mod = await runner.import('@vitejs/cjs-external')
248+
expect(mod.default.hello()).toMatchInlineSnapshot(`"world"`)
249+
})
250+
})

0 commit comments

Comments
 (0)