chore: adjust ios configs in generated configs

This commit is contained in:
castdrian
2024-01-15 13:17:18 +01:00
parent 826ae13777
commit d887e9f207
2 changed files with 10 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
import { device, element, by, expect } from 'detox';
describe('Mobile', () => {
describe('movieweb', () => {
beforeEach(async () => {
await device.reloadReactNative();
});
it('should display welcome message', async () => {
await expect(element(by.id('heading'))).toHaveText('Welcome Mobile 👋');
await expect(element(by.id('heading'))).toHaveText('Welcome movie-web 👋');
});
});