App.test.js 127 Bytes
Newer Older
Joe Haddad's avatar
Joe Haddad committed
1
2
3
4
5
6
import App from './App';

it('creates instance without', () => {
  const app = new App();
  expect(app.foo()).toBe('bar');
});