react-native-firebase/tests-new/e2e/init.js

15 lines
279 B
JavaScript
Executable File

const detox = require('detox');
const config = require('../package.json').detox;
global.sinon = require('sinon');
require('should-sinon');
global.should = require('should');
before(async () => {
await detox.init(config);
});
after(async () => {
await detox.cleanup();
});