import type { Component } from 'solid-js' import type { TestNode, TestSummary } from '~/components/types' import { For, Show } from 'solid-js' import TestTreeItem from './TestTreeItem' export interface TestExplorerProps { roots: string[] tests: Record selectedId: string | null onSelect: (id: string) => void onRunTest?: (id: string) => void summary: TestSummary } const TestExplorer: Component = (props) => { return ( ) } export default TestExplorer