This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/cypress/fixtures/channels/channel.ts

16 lines
302 B
TypeScript
Raw Normal View History

import { guildExample } from "../guilds/guild"
2021-10-26 16:38:55 +02:00
export const channelExample = {
2021-10-26 16:38:55 +02:00
id: 1,
name: "general",
guildId: guildExample.id,
2021-10-26 16:38:55 +02:00
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
2021-10-26 16:38:55 +02:00
}
export const channelExample2 = {
...channelExample,
id: 2,
name: "general2",
}