mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 16:30:08 +00:00
* style: format Deno.test\("(.+)", async \(\) => \{\n([\S\s]*?)^\}\);
* style: format Deno.test\("(.+)", \(\) => \{\n([\S\s]*?)^\}\);
* style: format Deno.test\("(.+)", async \(t\) => \{\n([\S\s]*?)^\}\);
* style: format async function
* chore: turn all to async
* chore: format add t
* style: function format
* chore: add integration and unit test difference
* ci: combine test
* ci: remove if
* ci: add parallel flag
* ci: add UNIT_TEST_GUILD_ID
* ci: static deno version
* ci: add concurrency to Integration test
* ci: bump actions/checkout to v3
16 lines
405 B
TypeScript
16 lines
405 B
TypeScript
// 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",
|
|
// async fn (t) {
|
|
// const bot = enableCachePlugin(loadBot());
|
|
|
|
// await memoryBenchmarks(bot, {
|
|
// log: true,
|
|
// table: true,
|
|
// });
|
|
// },
|
|
// });
|