(files: string[])
| 2 | import { pickChecker, pickCheckers } from '../src/tools/diagnostics/checkers.js'; |
| 3 | |
| 4 | const ids = (files: string[]) => pickCheckers(new Set(files)).map(c => c.id); |
| 5 | |
| 6 | describe('pickCheckers — one checker per language (polyglot verification)', () => { |
| 7 | it('monolingual TS project returns exactly tsc — same as the old single pickChecker', () => { |
no test coverage detected