Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-01 | feat(bench): print iter/s in the report (#19994) | Bartek IwaĆczuk | |
This commit adds "iter/s" column to the console report generated by "deno bench" subcommand. | |||
2023-07-31 | feat(bench): add BenchContext::start() and BenchContext::end() (#18734) | Nayeem Rahman | |
Closes #17589. ```ts Deno.bench("foo", async (t) => { const resource = setup(); // not included in measurement t.start(); measuredOperation(resource); t.end(); resource.close(); // not included in measurement }); ``` |