react-native-navigation的迁移库

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