瀏覽代碼

fixed typo

Daniel Zlotin 8 年之前
父節點
當前提交
2bda4c271f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      e2e/app.test.js

+ 1
- 1
e2e/app.test.js 查看文件

193
 
193
 
194
   it('declare a navigationStyle on container component', async () => {
194
   it('declare a navigationStyle on container component', async () => {
195
     await elementByLabel('Push').tap();
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