import { describe, it, expect } from 'vitest'; import { timeAgo, timeUntil } from './time'; describe('time', () => { it('should be defined', () => { expect(timeAgo).toBeDefined(); expect(timeUntil).toBeDefined(); }); });