fix: prettier changes again

This commit is contained in:
Jacob Nguyen
2022-05-19 23:16:33 -05:00
parent 571a8044b0
commit d5bb9922df
2 changed files with 10 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
import { hasPrefix, fmt, isNotFromBot } from '../src/handler/utilities/messageHelpers';
import { fmt, hasPrefix, isNotFromBot } from '../src/handler/utilities/messageHelpers';
describe('FUNCTIONS', () => {
test('If hasPrefix is a function', () => {
expect(typeof hasPrefix).toBe('function');
@@ -9,5 +10,4 @@ describe('FUNCTIONS', () => {
test('if isBot is a function', () => {
expect(typeof isNotFromBot).toBe('function');
});
});