Skip to content

Commit 9f52c6a

Browse files
committed
refactor: remove unused runner export
1 parent 9251a29 commit 9f52c6a

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

src/platforms/apple/core/__tests__/runner-transport.test.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,8 @@ vi.mock('../runner/runner-usbmux.ts', () => ({
2727
},
2828
}));
2929

30-
import {
31-
clearDeviceTunnelIpCache,
32-
sendRunnerCommandOnce,
33-
waitForRunner,
34-
} from '../runner/runner-transport.ts';
30+
import { clearDeviceTunnelIpCache } from '../runner/runner-command-route.ts';
31+
import { sendRunnerCommandOnce, waitForRunner } from '../runner/runner-transport.ts';
3532

3633
const iosSimulator: DeviceInfo = {
3734
platform: 'apple',

src/platforms/apple/core/runner/runner-transport.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import {
2020
import type { RunnerSession } from './runner-session-types.ts';
2121
import { usbmuxRunnerTransport } from './runner-usbmux.ts';
2222

23-
export { clearDeviceTunnelIpCache } from './runner-command-route.ts';
2423
export { cleanupTempFile, getFreePort, logChunk } from './runner-io.ts';
2524

2625
export const RUNNER_STARTUP_TIMEOUT_MS = 45_000;

0 commit comments

Comments
 (0)