diff --git a/.detoxrc.js b/.detoxrc.js index a899f6a35..1657f656e 100644 --- a/.detoxrc.js +++ b/.detoxrc.js @@ -9,8 +9,8 @@ module.exports = { }, artifacts: { plugins: { - screenshot: process.env.CI ? undefined : 'failing', - video: process.env.CI ? undefined : 'failing', + screenshot: 'failing', + video: 'failing', uiHierarchy: process.env.CI ? undefined : 'enabled' } }, diff --git a/e2e/tests/assorted/15-change-avatar.spec.ts b/e2e/tests/assorted/15-change-avatar.spec.ts index b92b9cf05..15d1e1749 100644 --- a/e2e/tests/assorted/15-change-avatar.spec.ts +++ b/e2e/tests/assorted/15-change-avatar.spec.ts @@ -3,7 +3,7 @@ import { device, waitFor, element, by } from 'detox'; import { navigateToLogin, login, sleep, platformTypes, TTextMatcher, tapBack } from '../../helpers/app'; import { createRandomUser, getProfileInfo, ITestUser, login as loginSetup } from '../../helpers/data_setup'; -describe('Profile screen', () => { +describe.only('Profile screen', () => { let scrollViewType: string; let textMatcher: TTextMatcher; let user: ITestUser; diff --git a/e2e/tests/room/02-room.spec.ts b/e2e/tests/room/02-room.spec.ts index 381e38069..24914458a 100644 --- a/e2e/tests/room/02-room.spec.ts +++ b/e2e/tests/room/02-room.spec.ts @@ -116,6 +116,7 @@ describe('Room screen', () => { describe('Message', () => { it('should copy link', async () => { await element(by[textMatcher](randomMessage)).atIndex(0).longPress(); + await sleep(300); await waitFor(element(by.id('action-sheet'))) .toExist() .withTimeout(2000); @@ -126,6 +127,7 @@ describe('Room screen', () => { }); it('should copy message', async () => { await element(by[textMatcher](randomMessage)).atIndex(0).longPress(); + await sleep(300); await waitFor(element(by.id('action-sheet'))) .toExist() .withTimeout(2000); @@ -163,6 +165,7 @@ describe('Room screen', () => { it('should search emojis in the reaction picker and react', async () => { await element(by[textMatcher](randomMessage)).atIndex(0).longPress(); + await sleep(300); await waitFor(element(by.id('action-sheet'))) .toExist() .withTimeout(2000); @@ -191,6 +194,7 @@ describe('Room screen', () => { it('should react to message with frequently used emoji', async () => { await element(by[textMatcher](randomMessage)).atIndex(0).longPress(); + await sleep(300); await waitFor(element(by.id('action-sheet'))) .toExist() .withTimeout(2000); diff --git a/e2e/tests/room/11-sharemessage.spec.ts b/e2e/tests/room/11-sharemessage.spec.ts index 64089d1dc..108b1ec5a 100644 --- a/e2e/tests/room/11-sharemessage.spec.ts +++ b/e2e/tests/room/11-sharemessage.spec.ts @@ -8,7 +8,8 @@ import { TTextMatcher, tapBack, navigateToRoom, - mockMessage + mockMessage, + checkRoomTitle } from '../../helpers/app'; import { createRandomRoom, createRandomUser, ITestUser } from '../../helpers/data_setup'; @@ -70,13 +71,19 @@ describe('Forward a message with another user', () => { .toExist() .withTimeout(10000); await element(by.id(`multi-select-item-${otherUser.username.toLowerCase()}`)).tap(); + await sleep(500); await element(by.id('multi-select-search')).tapReturnKey(); - await sleep(300); + await sleep(500); + await waitFor(element(by.id('multi-select-search'))) + .not.toBeVisible() + .withTimeout(2000); await waitFor(element(by.id('forward-message-view-send'))) .toBeVisible() .withTimeout(10000); + await sleep(300); await element(by.id('forward-message-view-send')).tap(); await sleep(300); + await checkRoomTitle(room); }); it('should go to otherUser DM and verify if exist both messages', async () => { await tapBack();