mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-30 07:20:08 +00:00
15 lines
321 B
TypeScript
15 lines
321 B
TypeScript
import { bot } from "./mod.ts";
|
|
import { memoryBenchmarks } from "../benchmarks/index.ts";
|
|
import { sanitizeMode } from "./constants.ts";
|
|
|
|
Deno.test({
|
|
name: "[Memory] Benchmark memory tests",
|
|
fn: async (t) => {
|
|
await memoryBenchmarks(bot, {
|
|
log: true,
|
|
table: true,
|
|
});
|
|
},
|
|
...sanitizeMode,
|
|
});
|