12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- describe('top level api', () => {
- beforeEach(async () => {
- await device.relaunchApp();
- });
-
- it('shows welcome screen', async () => {
- await expect(elementByLabel('React Native Navigation!')).toBeVisible();
- });
-
- it('switch to tab based app, passProps and functions', async () => {
- await elementByLabel('Switch to tab based app').tap();
- await expect(elementByLabel('This is tab 1')).toBeVisible();
- await expect(elementByLabel('Hello from a function!')).toBeVisible();
- });
-
- it('switch to tabs with side menus', async () => {
- await elementByLabel('Switch to app with side menus').tap();
- await elementByLabel('This is a side menu center screen tab 1').swipe('right');
- await expect(elementByLabel('This is a left side menu screen')).toBeVisible();
- });
-
- it('screen lifecycle', async () => {
- await elementByLabel('Push lifecycle screen').tap();
- await expect(elementByLabel('onStart')).toBeVisible();
- await elementByLabel('Push to test onStop').tap();
- await expect(elementByLabel('Alert')).toBeVisible();
- await expect(elementByLabel('onStop')).toBeVisible();
- });
-
- it('unmount is called on pop', async () => {
- await elementByLabel('Push lifecycle screen').tap();
- await expect(elementByLabel('onStart')).toBeVisible();
- await element(by.traits(['button']).and(by.label('Back'))).tap();
- await expect(elementByLabel('onStop')).toBeVisible();
- await expect(elementByLabel('componentWillUnmount')).toBeVisible();
- });
- });
-
- describe('reload app', async () => {
- beforeEach(async () => {
- await device.relaunchApp();
- });
-
- it('push a screen to ensure its not there after reload', async () => {
- await elementByLabel('Push').tap();
- await expect(elementByLabel('Pushed Screen')).toBeVisible();
- await device.reloadReactNative();
- await expect(elementByLabel('React Native Navigation!')).toBeVisible();
- });
- });
-
- function elementByLabel(label) {
- return element(by.label(label));
- }
|