mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
14 lines
428 B
TypeScript
14 lines
428 B
TypeScript
import { fmt, hasPrefix, isNotFromBot } from '../src/handler/utilities/messageHelpers';
|
|
|
|
describe('FUNCTIONS', () => {
|
|
test('If hasPrefix is a function', () => {
|
|
expect(typeof hasPrefix).toBe('function');
|
|
});
|
|
test('if fmt is a function', () => {
|
|
expect(typeof fmt).toBe('function');
|
|
});
|
|
test('if isBot is a function', () => {
|
|
expect(typeof isNotFromBot).toBe('function');
|
|
});
|
|
});
|