mirror of
https://github.com/status-im/react-native-webview.git
synced 2026-09-02 12:41:16 +00:00
19 lines
588 B
JavaScript
19 lines
588 B
JavaScript
describe('Example', () => {
|
|
beforeEach(async () => {
|
|
await device.reloadReactNative();
|
|
});
|
|
|
|
it('should have welcome screen', async () => {
|
|
await expect(element(by.id('welcome'))).toBeVisible();
|
|
});
|
|
|
|
// it('should show hello screen after tap', async () => {
|
|
// await element(by.id('hello_button')).tap();
|
|
// await expect(element(by.text('Hello!!!'))).toBeVisible();
|
|
// });
|
|
|
|
// it('should show world screen after tap', async () => {
|
|
// await element(by.id('world_button')).tap();
|
|
// await expect(element(by.text('World!!!'))).toBeVisible();
|
|
// });
|
|
}) |