Revert "memoryBenchmarks() second argument is optional (defaults to true)"

This reverts commit b773ef1571.
This commit is contained in:
lts20050703
2021-12-21 09:03:31 +07:00
parent b773ef1571
commit 1e89abba6c

View File

@@ -5,7 +5,10 @@ import { sanitizeMode } from "./constants.ts";
Deno.test({
name: "[Memory] Benchmark memory tests",
fn: async (t) => {
await memoryBenchmarks(bot);
await memoryBenchmarks(bot, {
log: true,
table: true,
});
},
...sanitizeMode,
});