2018-05-23 13:39:18 +00:00
|
|
|
const detox = require('detox');
|
2020-07-22 16:32:21 +00:00
|
|
|
const adapter = require('detox/runners/mocha/adapter');
|
2021-09-13 20:41:05 +00:00
|
|
|
|
2021-07-02 17:39:39 +00:00
|
|
|
const config = require('../../package.json').detox;
|
|
|
|
const { setup } = require('../helpers/data_setup');
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
before(async () => {
|
2021-07-02 17:39:39 +00:00
|
|
|
await Promise.all([setup(), detox.init(config, { launchApp: false })]);
|
|
|
|
// await dataSetup()
|
|
|
|
// await detox.init(config, { launchApp: false });
|
|
|
|
// await device.launchApp({ permissions: { notifications: 'YES' } });
|
2020-07-22 16:32:21 +00:00
|
|
|
});
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
beforeEach(async function () {
|
2020-07-22 16:32:21 +00:00
|
|
|
await adapter.beforeEach(this);
|
|
|
|
});
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
afterEach(async function () {
|
2020-07-22 16:32:21 +00:00
|
|
|
await adapter.afterEach(this);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
after(async () => {
|
2018-05-23 13:39:18 +00:00
|
|
|
await detox.cleanup();
|
|
|
|
});
|