mirror of
https://github.com/sern-handler/handler
synced 2026-06-28 02:32:15 +00:00
style: Formatted 17 files & changes messageHelper util
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import { hasPrefix, fmt, 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');
|
||||
});
|
||||
import { hasPrefix, fmt, isFromBot } 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 isFromBot).toBe('function');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user