diff --git a/tests/perf-test/ReportActionCompose.perf-test.tsx b/tests/perf-test/ReportActionCompose.perf-test.tsx
index 242008965c83..ba634f1173a1 100644
--- a/tests/perf-test/ReportActionCompose.perf-test.tsx
+++ b/tests/perf-test/ReportActionCompose.perf-test.tsx
@@ -102,7 +102,7 @@ function ReportActionComposeWrapper() {
}
const mockEvent = {preventDefault: jest.fn()};
-test('[ReportActionCompose] should render Composer with text input interactions', async () => {
+test.skip('[ReportActionCompose] should render Composer with text input interactions', async () => {
const scenario = async () => {
// Query for the composer
const composer = await screen.findByTestId('composer');
@@ -121,7 +121,7 @@ test('[ReportActionCompose] should render Composer with text input interactions'
return waitForBatchedUpdates().then(() => measurePerformance(, {scenario}));
});
-test('[ReportActionCompose] should press add attachemnt button', async () => {
+test.skip('[ReportActionCompose] should press add attachemnt button', async () => {
const scenario = async () => {
// Query for the attachment button
const hintAttachmentButtonText = Localize.translateLocal('common.create');
@@ -133,7 +133,7 @@ test('[ReportActionCompose] should press add attachemnt button', async () => {
return waitForBatchedUpdates().then(() => measurePerformance(, {scenario}));
});
-test('[ReportActionCompose] should press add emoji button', async () => {
+test.skip('[ReportActionCompose] should press add emoji button', async () => {
const scenario = async () => {
// Query for the emoji button
const hintEmojiButtonText = Localize.translateLocal('reportActionCompose.emoji');
@@ -145,7 +145,7 @@ test('[ReportActionCompose] should press add emoji button', async () => {
return waitForBatchedUpdates().then(() => measurePerformance(, {scenario}));
});
-test('[ReportActionCompose] should press send message button', async () => {
+test.skip('[ReportActionCompose] should press send message button', async () => {
const scenario = async () => {
// Query for the send button
const hintSendButtonText = Localize.translateLocal('common.send');
@@ -157,7 +157,7 @@ test('[ReportActionCompose] should press send message button', async () => {
return waitForBatchedUpdates().then(() => measurePerformance(, {scenario}));
});
-test('[ReportActionCompose] render composer with attachement modal interactions', async () => {
+test.skip('[ReportActionCompose] render composer with attachement modal interactions', async () => {
const scenario = async () => {
const hintAddAttachmentButtonText = Localize.translateLocal('reportActionCompose.addAttachment');
const hintAssignTaskButtonText = Localize.translateLocal('newTaskPage.assignTask');
diff --git a/tests/perf-test/ReportActionsList.perf-test.tsx b/tests/perf-test/ReportActionsList.perf-test.tsx
index ff284fdd7584..0fd2501910c8 100644
--- a/tests/perf-test/ReportActionsList.perf-test.tsx
+++ b/tests/perf-test/ReportActionsList.perf-test.tsx
@@ -113,7 +113,7 @@ function ReportActionsListWrapper() {
);
}
-test('[ReportActionsList] should render ReportActionsList with 500 reportActions stored', () => {
+test.skip('[ReportActionsList] should render ReportActionsList with 500 reportActions stored', () => {
const scenario = async () => {
await screen.findByTestId('report-actions-list');
const hintText = Localize.translateLocal('accessibilityHints.chatMessage');
@@ -130,7 +130,7 @@ test('[ReportActionsList] should render ReportActionsList with 500 reportActions
.then(() => measurePerformance(, {scenario}));
});
-test('[ReportActionsList] should scroll and click some of the reports', () => {
+test.skip('[ReportActionsList] should scroll and click some of the reports', () => {
const eventData = {
nativeEvent: {
contentOffset: {
diff --git a/tests/perf-test/ReportScreen.perf-test.tsx b/tests/perf-test/ReportScreen.perf-test.tsx
index e9d1c9e513ac..d452e9412655 100644
--- a/tests/perf-test/ReportScreen.perf-test.tsx
+++ b/tests/perf-test/ReportScreen.perf-test.tsx
@@ -167,7 +167,7 @@ const report = {...createRandomReport(1), policyID: '1'};
const reportActions = ReportTestUtils.getMockedReportActionsMap(1000);
const mockRoute = {params: {reportID: '1', reportActionID: ''}, key: 'Report', name: 'Report' as const};
-test('[ReportScreen] should render ReportScreen', () => {
+test.skip('[ReportScreen] should render ReportScreen', () => {
const {triggerTransitionEnd, addListener} = TestHelper.createAddListenerMock();
const scenario = async () => {
/**
diff --git a/tests/perf-test/SidebarLinks.perf-test.tsx b/tests/perf-test/SidebarLinks.perf-test.tsx
index 5aadb6d67ae5..1945f0372a10 100644
--- a/tests/perf-test/SidebarLinks.perf-test.tsx
+++ b/tests/perf-test/SidebarLinks.perf-test.tsx
@@ -40,7 +40,7 @@ const getMockedReportsMap = (length = 100) => {
const mockedResponseMap = getMockedReportsMap(500);
-describe('SidebarLinks', () => {
+describe.skip('SidebarLinks', () => {
beforeAll(() => {
Onyx.init({
keys: ONYXKEYS,