Skip to content

Commit d15d493

Browse files
authored
Merge pull request #31131 from Expensify/vit-skipTemporarilyReportScreenReassureTests
[NoQA] Skip the reassure ReportScreen tests until they are not flakey
2 parents ee275ef + 4692030 commit d15d493

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

tests/perf-test/ReportActionCompose.perf-test.js

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import ReportActionCompose from '../../src/pages/home/report/ReportActionCompose
1313
import * as LHNTestUtils from '../utils/LHNTestUtils';
1414
import waitForBatchedUpdates from '../utils/waitForBatchedUpdates';
1515

16+
jest.setTimeout(60000);
17+
1618
// mock PortalStateContext
1719
jest.mock('@gorhom/portal');
1820

tests/perf-test/ReportScreen.perf-test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function ReportScreenWrapper(args) {
125125
);
126126
}
127127

128-
test('should render ReportScreen with composer interactions', () => {
128+
test.skip('should render ReportScreen with composer interactions', () => {
129129
const scenario = async () => {
130130
// Query for the report list
131131
await screen.findByTestId('report-actions-list');
@@ -179,7 +179,7 @@ test('should render ReportScreen with composer interactions', () => {
179179
.then(() => measurePerformance(<ReportScreenWrapper route={mockRoute} />, {scenario}));
180180
});
181181

182-
test('should press of the report item', () => {
182+
test.skip('should press of the report item', () => {
183183
const scenario = async () => {
184184
// Query for the report list
185185
await screen.findByTestId('report-actions-list');

tests/perf-test/SelectionList.perf-test.js

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import _ from 'underscore';
55
import SelectionList from '../../src/components/SelectionList';
66
import variables from '../../src/styles/variables';
77

8+
jest.setTimeout(60000);
9+
810
jest.mock('../../src/components/Icon/Expensicons');
911

1012
jest.mock('../../src/hooks/useLocalize', () =>

0 commit comments

Comments
 (0)