/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/specs/cpu_prof/eval/__test__.jsonc
34 строки
735 B
Bartek Iwańczuk
feat: add --cpu-prof-flamegraph to generate interactive SVG flamegraphs (#32572)
14 мар 2026, 10:25
Не верифицирован
14 мар 2026, 10:25
e88d18a
Код
Авторство
О чём код?
{ "tempDir": true, "tests": { "eval_cpu_prof": { "steps": [ { "args": "eval --cpu-prof-dir=. console.log(42)", "output": "42\n" }, { "args": "run --allow-read verify.js", "output": "Valid profile with [WILDCARD] nodes\n" } ] }, "eval_md": { "steps": [ { "args": [ "eval", "--cpu-prof-dir=.", "--cpu-prof-md", "function fib(n){if(n<=1)return n;return fib(n-1)+fib(n-2)}; fib(30)" ], "output": "" }, { "args": "run --allow-read verify_md.js", "output": "Valid markdown report\n" } ] } } }