import App from '../js/App';

test('app loads correctly', () => {
    expect(console.log).toHaveBeenLastCalledWith('[App.initializeEventListeners]');

    App.doSomething();
    expect(console.log).toHaveBeenLastCalledWith('[App.doSomething]');
});
