mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
import { device, element, by, expect } from 'detox';
|
|
|
|
describe('Mobile', () => {
|
|
beforeEach(async () => {
|
|
await device.reloadReactNative();
|
|
});
|
|
|
|
it('should display welcome message', async () => {
|
|
await expect(element(by.id('heading'))).toHaveText('Welcome Mobile 👋');
|
|
});
|
|
});
|