Skip to content

Commit b99cc25

Browse files
authored
Revert "[NoQA] change ressure perf test workflow"
1 parent e0f849f commit b99cc25

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/reassurePerformanceTests.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,11 @@ jobs:
2222
run: |
2323
set -e
2424
BASELINE_BRANCH=${BASELINE_BRANCH:="main"}
25-
CURRENT_BRANCH=$(git branch --show-current)
2625
git fetch origin "$BASELINE_BRANCH" --no-tags --depth=1
2726
git switch "$BASELINE_BRANCH"
2827
npm install --force
2928
npx reassure --baseline
30-
git switch "$CURRENT_BRANCH"
31-
git merge --no-commit --no-ff "$BASELINE_BRANCH"
29+
git switch --force --detach -
3230
npm install --force
3331
npx reassure --branch
3432

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function ReportScreenWrapper(args) {
124124

125125
const runs = CONST.PERFORMANCE_TESTS.RUNS;
126126

127-
test('should render ReportScreen with composer interactions', () => {
127+
test.skip('should render ReportScreen with composer interactions', () => {
128128
const scenario = async () => {
129129
// Query for the report list
130130
await screen.findByTestId('report-actions-list');
@@ -175,7 +175,7 @@ test('should render ReportScreen with composer interactions', () => {
175175
.then(() => measurePerformance(<ReportScreenWrapper route={mockRoute} />, {scenario, runs}));
176176
});
177177

178-
test('should press of the report item', () => {
178+
test.skip('should press of the report item', () => {
179179
const scenario = async () => {
180180
// Query for the report list
181181
await screen.findByTestId('report-actions-list');

0 commit comments

Comments
 (0)