react-native-navigation的迁移库

init.js 207B

1234567891011
  1. const detox = require('detox');
  2. const config = require('../package.json').detox;
  3. before(async () => {
  4. await detox.init(config, { launchApp: false });
  5. });
  6. after(async () => {
  7. await detox.cleanup();
  8. });