From 727e6ff4475cf79527760771e9a88661212a5d6b Mon Sep 17 00:00:00 2001 From: FitseTLT Date: Thu, 29 May 2025 23:39:55 +0300 Subject: [PATCH 1/3] remove only --- tests/unit/ReportUtilsTest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/ReportUtilsTest.ts b/tests/unit/ReportUtilsTest.ts index 713311e28a81..8fd2b7992af7 100644 --- a/tests/unit/ReportUtilsTest.ts +++ b/tests/unit/ReportUtilsTest.ts @@ -1396,7 +1396,7 @@ describe('ReportUtils', () => { }); describe('canHoldUnholdReportAction', () => { - it.only('should return canUnholdRequest as true for a held duplicate transaction', async () => { + it('should return canUnholdRequest as true for a held duplicate transaction', async () => { const chatReport: Report = {reportID: '1'}; const reportPreviewReportActionID = '8'; const expenseReport = buildOptimisticExpenseReport(chatReport.reportID, '123', currentUserAccountID, 122, 'USD', undefined, reportPreviewReportActionID); From b0e2ba8c7b038582d618065f62bd16cdb0cb989a Mon Sep 17 00:00:00 2001 From: FitseTLT Date: Thu, 29 May 2025 23:42:18 +0300 Subject: [PATCH 2/3] remove only --- tests/unit/ViolationUtilsTest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/ViolationUtilsTest.ts b/tests/unit/ViolationUtilsTest.ts index 7c52c217ddc6..2c914d48540a 100644 --- a/tests/unit/ViolationUtilsTest.ts +++ b/tests/unit/ViolationUtilsTest.ts @@ -250,7 +250,7 @@ describe('getViolationsOnyxData', () => { transaction.comment = {comment: ''}; }); - it.only('should add category specific violations', () => { + it('should add category specific violations', () => { const result = ViolationsUtils.getViolationsOnyxData(transaction, transactionViolations, policy, policyTags, policyCategories, false, false); expect(result.value).toEqual(expect.arrayContaining([categoryOverLimitViolation, categoryReceiptRequiredViolation, categoryMissingCommentViolation, ...transactionViolations])); }); From 4ed579d93e37faa254de192284a0036594551089 Mon Sep 17 00:00:00 2001 From: FitseTLT Date: Fri, 30 May 2025 00:08:15 +0300 Subject: [PATCH 3/3] Revert "remove only" This reverts commit 727e6ff4475cf79527760771e9a88661212a5d6b. --- tests/unit/ReportUtilsTest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/ReportUtilsTest.ts b/tests/unit/ReportUtilsTest.ts index 8fd2b7992af7..713311e28a81 100644 --- a/tests/unit/ReportUtilsTest.ts +++ b/tests/unit/ReportUtilsTest.ts @@ -1396,7 +1396,7 @@ describe('ReportUtils', () => { }); describe('canHoldUnholdReportAction', () => { - it('should return canUnholdRequest as true for a held duplicate transaction', async () => { + it.only('should return canUnholdRequest as true for a held duplicate transaction', async () => { const chatReport: Report = {reportID: '1'}; const reportPreviewReportActionID = '8'; const expenseReport = buildOptimisticExpenseReport(chatReport.reportID, '123', currentUserAccountID, 122, 'USD', undefined, reportPreviewReportActionID);