You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
421 B

const detox = require('detox')
const config = require('../package.json').detox
const adapter = require('detox/runners/mocha/adapter')
const { reset } = require("./utils")
before(async () => {
await detox.init(config)
})
beforeEach(async function () {
await reset()
await adapter.beforeEach(this)
})
afterEach(async function () {
await adapter.afterEach(this)
})
after(async () => {
await detox.cleanup()
})