8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
import app from '../src/app'
|
|
|
|
describe('Example', () => {
|
|
test('should be defined', () => {
|
|
expect(app).toBeDefined();
|
|
})
|
|
})
|