Skip to content

Commit 6adcefc

Browse files
committed
chore: debug failing long test message
1 parent 6b1b648 commit 6adcefc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/android-regression.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ on:
2222
- 'high-risk'
2323
- 'medium-risk'
2424
- 'low-risk'
25+
- 'test-risk'
2526
- ''
2627

2728
ALLURE_ENABLED:

run/test/specs/group_message_long_text.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { closeApp, SupportedPlatformsType } from './utils/open_app';
88

99
bothPlatformsIt({
1010
title: 'Send long message to group',
11-
risk: 'low',
11+
risk: 'test',
1212
countOfDevicesNeeded: 3,
1313
testCb: sendLongMessageGroup,
1414
allureDescription: 'Verifies that a long message can be sent to a group',
@@ -34,7 +34,6 @@ async function sendLongMessageGroup(platform: SupportedPlatformsType, testInfo:
3434
const replyMessage = await bob1.replyToMessage(alice, longText);
3535
await Promise.all(
3636
[alice1, charlie1].map(async device => {
37-
await device.scrollToBottom();
3837
await device.waitForTextElementToBePresent(new MessageBody(device, replyMessage));
3938
})
4039
);

run/test/specs/message_long_text.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { closeApp, SupportedPlatformsType } from './utils/open_app';
1010

1111
bothPlatformsItSeparate({
1212
title: 'Send long message 1:1',
13-
risk: 'low',
13+
risk: 'test',
1414
countOfDevicesNeeded: 2,
1515
ios: {
1616
testCb: sendLongMessageIos,

run/types/testing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ export type Id =
571571
| `All ${AppName} notifications`
572572
| `Disappear after ${DisappearModes} option`;
573573

574-
export type TestRisk = 'high' | 'low' | 'medium';
574+
export type TestRisk = 'high' | 'low' | 'medium' | 'test';
575575

576576
export type ElementStates = 'new_account' | 'restore_account';
577577

0 commit comments

Comments
 (0)