react-native-navigation的迁移库

init.js 209B

1234567891011121314
  1. /*eslint-disable*/
  2. const detox = require('detox');
  3. const config = require('../../package.json').detox;
  4. before(async () => {
  5. await detox.init(config);
  6. });
  7. after(async () => {
  8. await detox.cleanup();
  9. });