mirror of
https://github.com/standardnotes/mobile.git
synced 2026-08-03 08:46:56 -04:00
* Android upgrade * iOS setup without flipper * Add Bridging headers * Bring back AsyncStorage limit * Remove submodules * Remove files from vendor * Use dependencies from forks * Update init command * Remove unused libraries * Working iOS setup * Update AppDelegate.m * Use new flipper * Add lint deps * Proper eslint + prettier setup * Fix workflow path * gitlab => github
21 lines
409 B
JavaScript
21 lines
409 B
JavaScript
/* eslint-disable no-undef */
|
|
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();
|
|
});
|