Parent Directory
|
Revision Log
chore: add trunk
1 | rakinar2 | 575 | import Client from "@/core/Client"; |
2 | import { Client as DiscordJSClient } from "discord.js"; | ||
3 | import { describe, expect, it } from "vitest"; | ||
4 | |||
5 | describe("Client", () => { | ||
6 | it("should be an instance of DiscordJSClient", () => { | ||
7 | const client = new Client({ intents: [] }); | ||
8 | expect(client).toBeInstanceOf(DiscordJSClient); | ||
9 | }); | ||
10 | }); |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |