소스 검색

fixed typo

Daniel Zlotin 8 년 전
부모
커밋
2bda4c271f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      e2e/app.test.js

+ 1
- 1
e2e/app.test.js 파일 보기

@@ -193,7 +193,7 @@ describe('screen style - static', () => {
193 193
 
194 194
   it('declare a navigationStyle on container component', async () => {
195 195
     await elementByLabel('Push').tap();
196
-    await expect(element(by.label('Static Title').and.by.type('UILabel'))).toBeVisible();
196
+    await expect(element(by.label('Static Title').and(by.type('UILabel')))).toBeVisible();
197 197
   });
198 198
 });
199 199