JEST ATTENDRE DU TIMPLEMENT

it('has working hooks', done => {
  setTimeout(() => {
    console.log("Why don't I run?")
    expect(true).toBe(true)
    done()
  }, 15000)
})
Suman Majhi