react-native-navigation的迁移库

init.js 417B

123456789101112131415161718192021
  1. /*eslint-disable*/
  2. require('babel-polyfill');
  3. const detox = require('detox');
  4. const detoxConfig = require('../package.json').detox;
  5. detoxConfig['ios-simulator'].app = process.env.detoxAppBuildPath;
  6. before(function(done) {
  7. this.timeout(30000);
  8. detox.config(detoxConfig);
  9. detox.start(done);
  10. });
  11. afterEach(function(done) {
  12. detox.waitForTestResult(done);
  13. });
  14. after(function(done) {
  15. detox.cleanup(done);
  16. });