Skip to content

Instantly share code, notes, and snippets.

@vatson
Last active January 25, 2019 16:47
Show Gist options
  • Save vatson/efb2da9ee8a0838674eb709cf142929e to your computer and use it in GitHub Desktop.
Save vatson/efb2da9ee8a0838674eb709cf142929e to your computer and use it in GitHub Desktop.
test.js
let myRandomNumber
before(async() => {
myRandomNumber = await new Promise((res, rej) => {
setTimeout(_ => res(Math.random()), 1500)
})
describe('shame on mocha', () => {
it(`my rand is ${myRandomNumber}`)
})
})
it('')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment