This commit is contained in:
Diego Mello 2022-12-08 18:08:46 -03:00
parent 4dea3e7ce8
commit ab53a5aaea
1 changed files with 1 additions and 4 deletions

View File

@ -1,14 +1,11 @@
import { expect } from 'detox';
import { navigateToRegister, platformTypes, TTextMatcher } from '../../helpers/app';
import { navigateToRegister } from '../../helpers/app';
import data from '../../data';
describe('Create user screen', () => {
let alertButtonType: string;
let textMatcher: TTextMatcher;
before(async () => {
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
({ alertButtonType, textMatcher } = platformTypes[device.getPlatform()]);
await navigateToRegister();
});