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

10 lines
194 B
TypeScript
Raw Normal View History

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