| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | describe('app', () => {
  beforeEach((done) => {
    global.simulator.relaunchApp(done);
  });
  it('shows welcome screen', () => {
    expect(elementByLabel('React Native Navigation!')).toBeVisible();
  });
  it('switch to tab based app, passProps and functions', () => {
    elementByLabel('Switch to tab based app').tap();
    expect(elementByLabel('This is tab 1')).toBeVisible();
    expect(elementByLabel('Hello from a function!')).toBeVisible();
  });
  it('push screen', () => {
    elementByLabel('Push').tap();
    expect(elementByLabel('Pushed screen')).toBeVisible();
  });
  it('switch to tabs with side menus', () => {
    elementByLabel('Switch to app with side menus').tap();
    elementByLabel('This is a side menu center screen').swipe('right');
    expect(elementByLabel('This is a side menu screen')).toBeVisible();
  });
  it('screen lifecycle', () => {
    elementByLabel('Switch to lifecycle screen').tap();
    expect(elementByLabel('onStart!')).toBeVisible();
    elementByLabel('Push to test onStop').tap();
    expect(elementByLabel('Alert')).toBeVisible();
    expect(elementByLabel('onStop!')).toBeVisible();
  });
  it('pop screen', () => {
    elementByLabel('Push').tap();
    expect(elementByLabel('Pushed screen')).toBeVisible();
    elementByLabel('Pop').tap();
    expect(elementByLabel('React Native Navigation!')).toBeVisible();
  });
<<<<<<< HEAD
  
});
describe('reload app', () => {
  before(function (done) {
    simulator.reloadReactNativeApp(done);
  });
  it('shows welcome screen', () => {
    expect(elementByLabel('React Native Navigation!')).toBeVisible();
=======
  xit('show modal', () => {
    elementByLabel('Show Modal').tap();
    expect(elementByLabel('Modal screen')).toBeVisible();
>>>>>>> 886672b24c98bd44fe235b9f4a5084da85b45d8d
  });
});
function elementByLabel(label) {
  return element(by.label(label));
}
 |