/[sudobot]/trunk/tests/mocks/guild.mock.ts
ViewVC logotype

Contents of /trunk/tests/mocks/guild.mock.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: 613 byte(s)
chore: add trunk
1 import { faker } from "@faker-js/faker";
2 import { Collection, Guild, Invite } from "discord.js";
3 import { randomSnowflake } from "./snowflakes";
4
5 export function createGuild() {
6 return {
7 id: randomSnowflake(),
8 name: faker.lorem.words(3),
9 icon: faker.image.avatar(),
10 ownerID: randomSnowflake(),
11 invites: {
12 cache: new Collection()
13 }
14 } as unknown as Guild;
15 }
16
17 export function createInvite() {
18 const code = faker.internet.password(10).replace(/\//g, "-");
19
20 return {
21 code,
22 url: `jttps://discord.gg/${code}`
23 } as Invite;
24 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26