diff --git a/.github/workflows/reassurePerformanceTests.yml b/.github/workflows/reassurePerformanceTests.yml index a58745b742ad..72774dc5ef07 100644 --- a/.github/workflows/reassurePerformanceTests.yml +++ b/.github/workflows/reassurePerformanceTests.yml @@ -22,11 +22,13 @@ jobs: run: | set -e BASELINE_BRANCH=${BASELINE_BRANCH:="main"} + CURRENT_BRANCH=$(git branch --show-current) git fetch origin "$BASELINE_BRANCH" --no-tags --depth=1 git switch "$BASELINE_BRANCH" npm install --force npx reassure --baseline - git switch --force --detach - + git switch "$CURRENT_BRANCH" + git merge --no-commit --no-ff "$BASELINE_BRANCH" npm install --force npx reassure --branch diff --git a/tests/perf-test/ReportScreen.perf-test.js b/tests/perf-test/ReportScreen.perf-test.js index a49aaff4d697..20af5603d177 100644 --- a/tests/perf-test/ReportScreen.perf-test.js +++ b/tests/perf-test/ReportScreen.perf-test.js @@ -124,7 +124,7 @@ function ReportScreenWrapper(args) { const runs = CONST.PERFORMANCE_TESTS.RUNS; -test.skip('should render ReportScreen with composer interactions', () => { +test('should render ReportScreen with composer interactions', () => { const scenario = async () => { // Query for the report list await screen.findByTestId('report-actions-list'); @@ -175,7 +175,7 @@ test.skip('should render ReportScreen with composer interactions', () => { .then(() => measurePerformance(, {scenario, runs})); }); -test.skip('should press of the report item', () => { +test('should press of the report item', () => { const scenario = async () => { // Query for the report list await screen.findByTestId('report-actions-list');