This commit is contained in:
Anant Bhasin 2021-08-04 16:02:44 +05:30
parent 7831728b16
commit 73dc72357c
3 changed files with 4 additions and 4 deletions

View File

@ -241,7 +241,7 @@ describe('Room screen', () => {
}); });
it('should edit message', async() => { it('should edit message', async() => {
if(device.getPlatform() === 'android') { if (device.getPlatform() === 'android') {
return; // Failing on android return; // Failing on android
} }
await mockMessage('edit'); await mockMessage('edit');
@ -269,7 +269,7 @@ describe('Room screen', () => {
}); });
it('should pin message', async() => { it('should pin message', async() => {
if(device.getPlatform() === 'android') { if (device.getPlatform() === 'android') {
return; // Failing on android return; // Failing on android
} }
await mockMessage('pin'); await mockMessage('pin');

View File

@ -231,7 +231,7 @@ describe('Room actions screen', () => {
}); });
it('should show pinned message and unpin it', async() => { it('should show pinned message and unpin it', async() => {
if(device.getPlatform() === 'android') { if (device.getPlatform() === 'android') {
return; // Failing on android return; // Failing on android
} }
// Go back to room and send a message // Go back to room and send a message

View File

@ -62,7 +62,7 @@ describe('Create team screen', () => {
}); });
it('should delete team', async() => { it('should delete team', async() => {
if(device.getPlatform() === 'android') { if (device.getPlatform() === 'android') {
return; // Failing on android return; // Failing on android
} }
await element(by.id('room-info-view-edit-button')).tap(); await element(by.id('room-info-view-edit-button')).tap();