feat: base shortcut code
This commit is contained in:
12
utils/commands/time.test.ts
Normal file
12
utils/commands/time.test.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { timeCommand } from './time';
|
||||
|
||||
describe('Time Command', () => {
|
||||
it('should return current time', async () => {
|
||||
const response = await timeCommand();
|
||||
|
||||
expect(response.success).toBe(true);
|
||||
expect(response.message).toMatch(/It's currently \d{1,2}:\d{2} [AP]M/);
|
||||
expect(response.data).toHaveProperty('timestamp');
|
||||
expect(response.data).toHaveProperty('formattedTime');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user