Lint fix
This commit is contained in:
parent
7831728b16
commit
73dc72357c
|
@ -241,7 +241,7 @@ describe('Room screen', () => {
|
|||
});
|
||||
|
||||
it('should edit message', async() => {
|
||||
if(device.getPlatform() === 'android') {
|
||||
if (device.getPlatform() === 'android') {
|
||||
return; // Failing on android
|
||||
}
|
||||
await mockMessage('edit');
|
||||
|
@ -269,7 +269,7 @@ describe('Room screen', () => {
|
|||
});
|
||||
|
||||
it('should pin message', async() => {
|
||||
if(device.getPlatform() === 'android') {
|
||||
if (device.getPlatform() === 'android') {
|
||||
return; // Failing on android
|
||||
}
|
||||
await mockMessage('pin');
|
||||
|
|
|
@ -231,7 +231,7 @@ describe('Room actions screen', () => {
|
|||
});
|
||||
|
||||
it('should show pinned message and unpin it', async() => {
|
||||
if(device.getPlatform() === 'android') {
|
||||
if (device.getPlatform() === 'android') {
|
||||
return; // Failing on android
|
||||
}
|
||||
// Go back to room and send a message
|
||||
|
|
|
@ -62,7 +62,7 @@ describe('Create team screen', () => {
|
|||
});
|
||||
|
||||
it('should delete team', async() => {
|
||||
if(device.getPlatform() === 'android') {
|
||||
if (device.getPlatform() === 'android') {
|
||||
return; // Failing on android
|
||||
}
|
||||
await element(by.id('room-info-view-edit-button')).tap();
|
||||
|
|
Loading…
Reference in New Issue