()
| 79 | export const BASE_URL = Platform.OS === 'android' ? '10.0.2.2' : 'localhost' |
| 80 | |
| 81 | export function BenchmarkUI() { |
| 82 | return ( |
| 83 | <View style={styles.container}> |
| 84 | <Text style={styles.header}>WebSocket Benchmark</Text> |
| 85 | {TESTS.map((test) => ( |
| 86 | <TestSection key={test.name} test={test} /> |
| 87 | ))} |
| 88 | </View> |
| 89 | ) |
| 90 | } |
| 91 | |
| 92 | function TestSection({ test }: { test: (typeof TESTS)[0] }) { |
| 93 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected