11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
|
// You can import your modules
|
||
|
// const index = require('../index')
|
||
|
|
||
|
test('that we can run tests', () => {
|
||
|
// your real tests go here
|
||
|
expect(1 + 2 + 3).toBe(6)
|
||
|
})
|
||
|
|
||
|
// For more information about testing with Jest see:
|
||
|
// https://facebook.github.io/jest/
|