Files
drip/e2e/init.js
T
Sofiya Tepikin 7e807dba7f Introducing detox
2019-07-21 16:17:16 +02:00

20 lines
379 B
JavaScript

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