react-native-navigation的迁移库

12345678910
  1. describe('app', () => {
  2. beforeEach((done) => {
  3. global.simulator.relaunchApp(done);
  4. });
  5. it('shows welcome screen', () => {
  6. expect(element(by.label('React Native Navigation!'))).toBeVisible();
  7. });
  8. });