react-native-navigation的迁移库

ScreenStyleStatic.test.js 323B

1234567891011
  1. describe('screen style - static', () => {
  2. beforeEach(async () => {
  3. await device.relaunchApp();
  4. });
  5. it('declare a navigationStyle on container component', async () => {
  6. await element(by.label('Push')).tap();
  7. await expect(element(by.label('Static Title').and(by.type('UILabel')))).toBeVisible();
  8. });
  9. });