fixtures.ts8 lines · main
| 1 | import type { LogData } from '@/components/interfaces/Settings/Logs/Logs.types' |
| 2 | |
| 3 | export const logDataFixture = (attrs: Partial<LogData>): LogData => ({ |
| 4 | id: `some-uuid-${new Date().getTime()}`, |
| 5 | timestamp: new Date().getTime() * 1000, |
| 6 | event_message: 'first event', |
| 7 | ...attrs, |
| 8 | }) |