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