Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ async function startMetroServer() {
websocketEndpoints: debuggerWebsocketEndpoints,
} = createDevMiddleware({
serverBaseUrl: `http://localhost:${metroConfig.server.port}`,
// Disable standalone DevTools shell preparation to avoid launching the
// Electron app during tests. This prevents crashes.
unstable_experiments: {
enableStandaloneFuseboxShell: false,
},
});

const enhanceMiddleware: ConfigT['server']['enhanceMiddleware'] = (
Expand Down
Loading