1 2 3 4 5 6 7
import botHandler from '../lib/bot-handler.js'; describe('Bot Handler', () => { test('should export a function', () => { expect(typeof botHandler).toBe('function'); }); });