/[sudobot]/trunk/tests/core/client.test.ts
ViewVC logotype

Contents of /trunk/tests/core/client.test.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (show annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 346 byte(s)
chore: add trunk
1 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