/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/specs/coverage/missing_source_file/__test__.jsonc
19 строк
444 B
Bartek Iwańczuk
fix(coverage): warn instead of erroring when source files are missing (#32398)
02 мар 2026, 16:20
Не верифицирован
02 мар 2026, 16:20
84f7a15
Код
Авторство
О чём код?
{ "tempDir": true, "steps": [ { "args": "run --coverage=coverage main.ts", "output": "hello\n" }, { // Delete a source file to simulate cleanup (e.g. build artifact removed) "args": "task --eval rm helper.ts", "output": "[WILDCARD]" }, { // Coverage should still work, warning about the missing file "args": "coverage coverage", "output": "missing_source.out" } ] }