Skip to content
Open
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
2 changes: 1 addition & 1 deletion packages/plugin-build/src/builtin-host-artifacts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,4 @@ describe("builtin host artifacts", () => {
},
90_000,
);
});
});
8 changes: 8 additions & 0 deletions packages/plugin-build/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ import {
export default defineWorkspaceTestConfig({
test: {
silent: "passed-only",
server: {
deps: {
// These files are final, self-contained ESM artifacts. Loading them
// through Vite transforms the large provider bundles a second time
// and does not match the daemon's native Node import.
external: [/\.builtin-host-test-[^/]+\/dist\/host\.js/u],
},
},
projects: sharedWorkerProjects({
pkgDir: __dirname,
name: "@bb/plugin-build",
Expand Down
Loading