1export const resolvePortAsync = jest.fn( 2 async (root, { defaultPort, fallbackPort }) => defaultPort ?? fallbackPort ?? 8081 3); 4export const ensurePortAvailabilityAsync = jest.fn(async () => true); 5
1export const resolvePortAsync = jest.fn( 2 async (root, { defaultPort, fallbackPort }) => defaultPort ?? fallbackPort ?? 8081 3); 4export const ensurePortAvailabilityAsync = jest.fn(async () => true); 5