How to add an implicit wait with JS-TestCafe?

How can I add an implicit wait with JS-TestCafe?

Hello Tim,

Use the following code below to add an implicit wait with JS-TestCafe:

await browser.setTimeout({ 'script': 60000 })
await browser.executeAsync((done) => {
    console.log('this should not fail')
    setTimeout(done, 59000)
})