Skip to content

Commit e87dd52

Browse files
committed
try out
1 parent 20896a3 commit e87dd52

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

playground/e2e/Options.test.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -94,18 +94,18 @@ describe('Options', () => {
9494
});
9595

9696
it(':android: TopBar custom title with subtitle should be visible', async () => {
97-
await elementById(TestIDs.GOTO_TOPBAR_TITLE_TEST).tap();
98-
await expect(elementById(TestIDs.TOPBAR_TITLE_TEXT)).toBeVisible();
99-
await expect(elementById(TestIDs.TOPBAR_TITLE_AVATAR)).toBeVisible();
97+
await elementById('GOTO_TOPBAR_TITLE_TEST').tap();
98+
await expect(elementById('TOPBAR_TITLE_TEXT')).toBeVisible();
99+
await expect(elementById('TOPBAR_TITLE_AVATAR')).toBeVisible();
100100
await device.pressBack();
101101
await expect(elementByLabel('Styling Options')).toBeVisible();
102102
});
103103

104104
it(':android: TopBar custom title without subtitle should be visible', async () => {
105-
await elementById(TestIDs.GOTO_TOPBAR_TITLE_TEST).tap();
106-
await elementById(TestIDs.SET_TOPBAR_WITHOUT_SUBTITLE_BTN).tap();
107-
await expect(elementById(TestIDs.TOPBAR_TITLE_TEXT)).toBeVisible();
108-
await expect(elementById(TestIDs.TOPBAR_TITLE_AVATAR)).toBeVisible();
105+
await elementById('GOTO_TOPBAR_TITLE_TEST').tap();
106+
await elementById('SET_TOPBAR_WITHOUT_SUBTITLE_BTN').tap();
107+
await expect(elementById('TOPBAR_TITLE_TEXT')).toBeVisible();
108+
await expect(elementById('TOPBAR_TITLE_AVATAR')).toBeVisible();
109109
await device.pressBack();
110110
await expect(elementByLabel('Styling Options')).toBeVisible();
111111
});

0 commit comments

Comments
 (0)