Focus flaky tests

This commit is contained in:
Diego Mello 2024-04-23 11:33:05 -03:00
parent 89a3844f56
commit 7b7a7663ac
4 changed files with 16 additions and 5 deletions

View File

@ -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'
}
},

View File

@ -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;

View File

@ -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);

View File

@ -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();