fix: disable benchmarks

This commit is contained in:
Skillz4Killz
2022-06-08 13:30:37 +00:00
committed by GitHub
parent fb6f73d124
commit e840b50319
+13 -13
View File
@@ -1,15 +1,15 @@
import { memoryBenchmarks } from "../../benchmarks/index.ts";
import enableCachePlugin from "../../plugins/cache/mod.ts";
import { loadBot } from "../mod.ts";
// import { memoryBenchmarks } from "../../benchmarks/index.ts";
// import enableCachePlugin from "../../plugins/cache/mod.ts";
// import { loadBot } from "../mod.ts";
Deno.test({
name: "[Memory] Benchmark memory tests",
fn: async (t) => {
const bot = enableCachePlugin(loadBot());
// Deno.test({
// name: "[Memory] Benchmark memory tests",
// fn: async (t) => {
// const bot = enableCachePlugin(loadBot());
await memoryBenchmarks(bot, {
log: true,
table: true,
});
},
});
// await memoryBenchmarks(bot, {
// log: true,
// table: true,
// });
// },
// });