Skipped a few tests on Android

This commit is contained in:
Diego Mello 2023-02-23 14:00:15 -03:00
parent 6528bea017
commit 3b35344cf1
1 changed files with 8 additions and 0 deletions

View File

@ -134,6 +134,10 @@ describe('Deep linking', () => {
});
it('should resume from background and navigate to the room', async () => {
if (device.getPlatform() === 'android') {
console.log('Skipped on Android');
return;
}
await device.sendToHome();
await device.launchApp({
permissions: { notifications: 'YES' },
@ -150,6 +154,10 @@ describe('Deep linking', () => {
});
it('should simulate a tap on a push notification and navigate to the room', async () => {
if (device.getPlatform() === 'android') {
console.log('Skipped on Android');
return;
}
/**
* Ideally, we would repeat this test to simulate a resume from background,
* but for some reason it was not working as expected