detox
Version:
E2E tests and automation for mobile
12 lines (9 loc) • 308 B
JavaScript
function create() {
const context = require('./index');
const DetoxInternalsFacade = require('./src/realms/DetoxInternalsFacade');
return new DetoxInternalsFacade(context);
}
/** @type {DetoxInternals.Facade} */
module.exports = global['__detox__']
? global['__detox__'].internalsApi
: create();