Skip to content

Commit

Permalink
Add baseline for benchmark script
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Mar 2, 2024
1 parent 316400e commit eee4cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const markdownit = MarkdownIt();
const md = await Deno.readFile(new URL("commonmark-spec.md", import.meta.url));
const mdStr = new TextDecoder().decode(md);

Deno.bench("md4w", () => {
Deno.bench("md4w", { baseline: true }, (b) => {
mdToHtml(md);
});

Expand Down

0 comments on commit eee4cb1

Please sign in to comment.