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
300 B
TypeScript

import { guildExample } from '../guilds/guild'
export const channelExample = {
id: 1,
name: 'general',
guildId: guildExample.id,
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString()
}
export const channelExample2 = {
...channelExample,
id: 2,
name: 'general2'
}