2025-10-21 12:47:11 -07:00
|
|
|
export const mockSeason = {
|
|
|
|
|
id: 'season-1',
|
|
|
|
|
leagueId: 'league-1',
|
|
|
|
|
year: 2025,
|
|
|
|
|
status: 'pre_draft' as const,
|
|
|
|
|
templateId: null,
|
|
|
|
|
draftRounds: 20,
|
|
|
|
|
flexSpots: 0,
|
|
|
|
|
draftDateTime: new Date('2025-12-01T19:00:00'),
|
2026-05-16 23:37:29 -07:00
|
|
|
autoStartDraft: false,
|
2025-10-21 12:47:11 -07:00
|
|
|
draftInitialTime: 120,
|
|
|
|
|
draftIncrementTime: 15,
|
|
|
|
|
currentPickNumber: 1,
|
|
|
|
|
draftStartedAt: null,
|
|
|
|
|
draftPaused: false,
|
|
|
|
|
inviteCode: 'TEST123',
|
2025-10-28 23:39:34 -07:00
|
|
|
pointsFor1st: 100,
|
|
|
|
|
pointsFor2nd: 70,
|
|
|
|
|
pointsFor3rd: 50,
|
|
|
|
|
pointsFor4th: 40,
|
|
|
|
|
pointsFor5th: 25,
|
|
|
|
|
pointsFor6th: 25,
|
|
|
|
|
pointsFor7th: 15,
|
|
|
|
|
pointsFor8th: 15,
|
2025-10-21 12:47:11 -07:00
|
|
|
createdAt: new Date('2025-01-01'),
|
|
|
|
|
updatedAt: new Date('2025-01-01'),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const mockActiveSeason = {
|
|
|
|
|
...mockSeason,
|
|
|
|
|
id: 'season-2',
|
|
|
|
|
status: 'active' as const,
|
|
|
|
|
draftStartedAt: new Date('2025-12-01T19:00:00'),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const mockDraftSeason = {
|
|
|
|
|
...mockSeason,
|
|
|
|
|
id: 'season-3',
|
|
|
|
|
status: 'draft' as const,
|
|
|
|
|
draftStartedAt: new Date('2025-12-01T19:00:00'),
|
|
|
|
|
currentPickNumber: 5,
|
|
|
|
|
};
|