(id: string)
| 78 | export const currentLogs = computed(() => getTasks(current.value).map(i => i?.logs || []).flat() || []) |
| 79 | |
| 80 | export function findById(id: string) { |
| 81 | const file = client.state.idMap.get(id) |
| 82 | return file ? file as RunnerTestFile : undefined |
| 83 | } |
| 84 | |
| 85 | export const isConnected = computed(() => status.value === 'OPEN') |
| 86 | export const isConnecting = computed(() => status.value === 'CONNECTING') |
no test coverage detected