6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
describe('Component.js', () => {
|
|
test('smoke test', () => {
|
|
expect(true).toBe(true) // will obviously always pass
|
|
})
|
|
})
|