From de0844925e2af0b38610e322694880b13b24f6fb Mon Sep 17 00:00:00 2001 From: Katarzyna Date: Fri, 18 Sep 2026 16:10:40 +0200 Subject: [PATCH] skip receiving tests --- src/tests/inbound/createInbound/exportItems.test.ts | 4 ++-- src/tests/inbound/listPage/receiptStatusFilter.test.ts | 4 ++-- src/tests/inbound/listPage/searchFilter.test.ts | 2 +- .../putaway/rollbackLastReceiptWhenPutawayCreated.test.ts | 2 +- src/tests/receiving/assertBinLocationField.test.ts | 2 +- .../receiving/assertCreationOfGoodsReceiptNote.test.ts | 2 +- src/tests/receiving/assertCreationOfReceivingBin.test.ts | 2 +- src/tests/receiving/assertQtyInputs.test.ts | 2 +- src/tests/receiving/assertRecipientField.test.ts | 2 +- src/tests/receiving/cancelRemainingQty.test.ts | 2 +- src/tests/receiving/editBinLocationWhenReceive.test.ts | 6 +++--- src/tests/receiving/editOriginalLineQtyTo0.test.ts | 4 ++-- src/tests/receiving/editsInReceiving.test.ts | 2 +- src/tests/receiving/exportReceivingTemplate.test.ts | 2 +- src/tests/receiving/importReceivingTemplate.test.ts | 2 +- .../receiving/lotExpirySystemUpdateOnReceiving.test.ts | 4 ++-- src/tests/receiving/receiveInbound.test.ts | 4 ++-- .../receiving/receiveInboundWithoutPartialReceiving.test.ts | 2 +- .../receiveInboundWithoutPickAndPutawayStock.test.ts | 2 +- src/tests/receiving/receiveToHoldBin.test.ts | 2 +- src/tests/receiving/receivingStatusChanges.test.ts | 2 +- .../receivingStatusChangesWithoutPartialReceiving.test.ts | 2 +- src/tests/receiving/rollbackStatusChanges.test.ts | 2 +- .../sortByAlphabeticalOrderAndRemainInputs.test.ts | 2 +- src/tests/receiving/tableShortcutsInReceiving.test.ts | 2 +- src/tests/receiving/validationsOnDeliverOnDate.test.ts | 2 +- src/tests/receiving/validationsOnEditAndReceive.test.ts | 4 ++-- 27 files changed, 35 insertions(+), 35 deletions(-) diff --git a/src/tests/inbound/createInbound/exportItems.test.ts b/src/tests/inbound/createInbound/exportItems.test.ts index f778a4d0..a76cd302 100644 --- a/src/tests/inbound/createInbound/exportItems.test.ts +++ b/src/tests/inbound/createInbound/exportItems.test.ts @@ -207,7 +207,7 @@ test.describe('Export all incoming items', () => { }); }); - test('Export all incoming items should include shipped items not received items', async ({ + test.skip('Export all incoming items should include shipped items not received items', async ({ inboundListPage, stockMovementShowPage, stockMovementService, @@ -270,7 +270,7 @@ test.describe('Export all incoming items', () => { }); // TODO: Adjust to rely on the empty database (on empty db it fails, because there is 404 No shipment items found) - test('Export all incoming items should not include received items', async ({ + test.skip('Export all incoming items should not include received items', async ({ inboundListPage, stockMovementShowPage, stockMovementService, diff --git a/src/tests/inbound/listPage/receiptStatusFilter.test.ts b/src/tests/inbound/listPage/receiptStatusFilter.test.ts index 3ea9b59d..9e63d10c 100644 --- a/src/tests/inbound/listPage/receiptStatusFilter.test.ts +++ b/src/tests/inbound/listPage/receiptStatusFilter.test.ts @@ -173,7 +173,7 @@ test.describe('Filter by "Received" status', () => { await stockMovementService.deleteStockMovement(STOCK_MOVEMENT.id); }); - test('Only "Received" stock movements should be visible in the table', async ({ + test.skip('Only "Received" stock movements should be visible in the table', async ({ inboundListPage, }) => { await test.step('Go to inbound list page', async () => { @@ -269,7 +269,7 @@ test.describe('Filter by "Receiving" status', () => { await stockMovementService.deleteStockMovement(STOCK_MOVEMENT.id); }); - test('Only "Receiving" stock movements should be visible in the table', async ({ + test.skip('Only "Receiving" stock movements should be visible in the table', async ({ inboundListPage, }) => { await test.step('Go to inbound list page', async () => { diff --git a/src/tests/inbound/listPage/searchFilter.test.ts b/src/tests/inbound/listPage/searchFilter.test.ts index 66db277f..aec273b9 100644 --- a/src/tests/inbound/listPage/searchFilter.test.ts +++ b/src/tests/inbound/listPage/searchFilter.test.ts @@ -16,7 +16,7 @@ test.describe('Search filter', () => { await stockMovementService.deleteStockMovement(STOCK_MOVEMENT.id); }); - test('Search stock movement by identifier', async ({ inboundListPage }) => { + test.skip('Search stock movement by identifier', async ({ inboundListPage }) => { await test.step('Go to inbound list page', async () => { await inboundListPage.goToPage(); }); diff --git a/src/tests/putaway/rollbackLastReceiptWhenPutawayCreated.test.ts b/src/tests/putaway/rollbackLastReceiptWhenPutawayCreated.test.ts index d456c9c9..0afaaee4 100644 --- a/src/tests/putaway/rollbackLastReceiptWhenPutawayCreated.test.ts +++ b/src/tests/putaway/rollbackLastReceiptWhenPutawayCreated.test.ts @@ -92,7 +92,7 @@ test.describe('Rollback last receipt behavior when putaway created', () => { } ); - test('Rollback last receipt behavior when putaway created', async ({ + test.skip('Rollback last receipt behavior when putaway created', async ({ stockMovementShowPage, navbar, createPutawayPage, diff --git a/src/tests/receiving/assertBinLocationField.test.ts b/src/tests/receiving/assertBinLocationField.test.ts index a0557ed9..4504eda8 100644 --- a/src/tests/receiving/assertBinLocationField.test.ts +++ b/src/tests/receiving/assertBinLocationField.test.ts @@ -6,7 +6,7 @@ import { StockMovementResponse } from '@/types'; import BinLocationUtils from '@/utils/BinLocationUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Assert bin location not clearable', () => { +test.describe.skip('Assert bin location not clearable', () => { let STOCK_MOVEMENT: StockMovementResponse; test.beforeEach( diff --git a/src/tests/receiving/assertCreationOfGoodsReceiptNote.test.ts b/src/tests/receiving/assertCreationOfGoodsReceiptNote.test.ts index 36ce756c..ac51d7c2 100644 --- a/src/tests/receiving/assertCreationOfGoodsReceiptNote.test.ts +++ b/src/tests/receiving/assertCreationOfGoodsReceiptNote.test.ts @@ -8,7 +8,7 @@ import { pageContainsValues } from '@/utils/pageUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; import { captureRowValues } from '@/utils/tableUtils'; -test.describe('Assert Goods Receipt Note is created and opened', () => { +test.describe.skip('Assert Goods Receipt Note is created and opened', () => { let STOCK_MOVEMENT: StockMovementResponse; test.beforeEach( diff --git a/src/tests/receiving/assertCreationOfReceivingBin.test.ts b/src/tests/receiving/assertCreationOfReceivingBin.test.ts index d77bb3a5..ed290462 100644 --- a/src/tests/receiving/assertCreationOfReceivingBin.test.ts +++ b/src/tests/receiving/assertCreationOfReceivingBin.test.ts @@ -9,7 +9,7 @@ import { StockMovementResponse } from '@/types'; import BinLocationUtils from '@/utils/BinLocationUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Assert creation of receiving bin', () => { +test.describe.skip('Assert creation of receiving bin', () => { test.describe.configure({ timeout: 60000 }); //timeout has been added for this test to make sure that the content on bin location tab will load as it can include a lot of data let STOCK_MOVEMENT: StockMovementResponse; diff --git a/src/tests/receiving/assertQtyInputs.test.ts b/src/tests/receiving/assertQtyInputs.test.ts index ceb3c4a7..d38e5e28 100644 --- a/src/tests/receiving/assertQtyInputs.test.ts +++ b/src/tests/receiving/assertQtyInputs.test.ts @@ -8,7 +8,7 @@ import BinLocationUtils from '@/utils/BinLocationUtils'; import { formatDate, getDateByOffset } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Assert if quantity inputs remain when split lines', () => { +test.describe.skip('Assert if quantity inputs remain when split lines', () => { let STOCK_MOVEMENT: StockMovementResponse; test.beforeEach( diff --git a/src/tests/receiving/assertRecipientField.test.ts b/src/tests/receiving/assertRecipientField.test.ts index 547299b7..322275c5 100644 --- a/src/tests/receiving/assertRecipientField.test.ts +++ b/src/tests/receiving/assertRecipientField.test.ts @@ -6,7 +6,7 @@ import { StockMovementResponse } from '@/types'; import BinLocationUtils from '@/utils/BinLocationUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Assert recipient field when receive', () => { +test.describe.skip('Assert recipient field when receive', () => { let STOCK_MOVEMENT: StockMovementResponse; test.beforeEach( diff --git a/src/tests/receiving/cancelRemainingQty.test.ts b/src/tests/receiving/cancelRemainingQty.test.ts index 513606b6..5f6c28c4 100644 --- a/src/tests/receiving/cancelRemainingQty.test.ts +++ b/src/tests/receiving/cancelRemainingQty.test.ts @@ -6,7 +6,7 @@ import { StockMovementResponse } from '@/types'; import BinLocationUtils from '@/utils/BinLocationUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Cancel qty in the middle of receipt', () => { +test.describe.skip('Cancel qty in the middle of receipt', () => { let STOCK_MOVEMENT: StockMovementResponse; test.beforeEach( diff --git a/src/tests/receiving/editBinLocationWhenReceive.test.ts b/src/tests/receiving/editBinLocationWhenReceive.test.ts index f59a31c5..dd52885c 100644 --- a/src/tests/receiving/editBinLocationWhenReceive.test.ts +++ b/src/tests/receiving/editBinLocationWhenReceive.test.ts @@ -8,7 +8,7 @@ import BinLocationUtils from '@/utils/BinLocationUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; import UniqueIdentifier from '@/utils/UniqueIdentifier'; -test.describe('Edit Bin Location when receive inbound stock movement', () => { +test.describe.skip('Edit Bin Location when receive inbound stock movement', () => { test.describe.configure({ timeout: 60000 }); //timeout has been added for this test to make sure that the content on bin location tab will load as it can include a lot of data let STOCK_MOVEMENT: StockMovementResponse; @@ -169,7 +169,7 @@ test.describe('Edit Bin Location when receive inbound stock movement', () => { }); }); -test.describe('Edit Bin Location to bin with zone when receive inbound stock movement', () => { +test.describe.skip('Edit Bin Location to bin with zone when receive inbound stock movement', () => { test.describe.configure({ timeout: 60000 }); //timeout has been added for this test to make sure that the content on bin location tab will load as it can include a lot of data let STOCK_MOVEMENT: StockMovementResponse; @@ -384,7 +384,7 @@ test.describe('Edit Bin Location to bin with zone when receive inbound stock mov }); }); -test.describe('Edit Bin Location when receive for all lines', () => { +test.describe.skip('Edit Bin Location when receive for all lines', () => { test.describe.configure({ timeout: 60000 }); //timeout has been added for this test to make sure that the content on bin location tab will load as it can include a lot of data let STOCK_MOVEMENT: StockMovementResponse; diff --git a/src/tests/receiving/editOriginalLineQtyTo0.test.ts b/src/tests/receiving/editOriginalLineQtyTo0.test.ts index 0a8891e5..98536a10 100644 --- a/src/tests/receiving/editOriginalLineQtyTo0.test.ts +++ b/src/tests/receiving/editOriginalLineQtyTo0.test.ts @@ -8,7 +8,7 @@ import { getDateByOffset } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; import UniqueIdentifier from '@/utils/UniqueIdentifier'; -test.describe('Edit qty of original line to 0', () => { +test.describe.skip('Edit qty of original line to 0', () => { let STOCK_MOVEMENT: StockMovementResponse; const uniqueIdentifier = new UniqueIdentifier(); const lot = uniqueIdentifier.generateUniqueString('lot'); @@ -211,7 +211,7 @@ test.describe('Edit qty of original line to 0', () => { }); }); -test.describe('Edit original line to other product in the middle of receipt', () => { +test.describe.skip('Edit original line to other product in the middle of receipt', () => { let STOCK_MOVEMENT: StockMovementResponse; test.beforeEach( diff --git a/src/tests/receiving/editsInReceiving.test.ts b/src/tests/receiving/editsInReceiving.test.ts index 7c43a4f6..9a9dd4d0 100644 --- a/src/tests/receiving/editsInReceiving.test.ts +++ b/src/tests/receiving/editsInReceiving.test.ts @@ -9,7 +9,7 @@ import { formatDate, getDateByOffset, getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; import UniqueIdentifier from '@/utils/UniqueIdentifier'; -test.describe('Edit items in the middle of receipt', () => { +test.describe.skip('Edit items in the middle of receipt', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday(); diff --git a/src/tests/receiving/exportReceivingTemplate.test.ts b/src/tests/receiving/exportReceivingTemplate.test.ts index de957a61..6d27ba34 100644 --- a/src/tests/receiving/exportReceivingTemplate.test.ts +++ b/src/tests/receiving/exportReceivingTemplate.test.ts @@ -11,7 +11,7 @@ import { deleteShipment } from '@/utils/shipmentUtils'; import UniqueIdentifier from '@/utils/UniqueIdentifier'; import { WorkbookUtils } from '@/utils/WorkbookUtils'; -test.describe('Export receiving template', () => { +test.describe.skip('Export receiving template', () => { let STOCK_MOVEMENT: StockMovementResponse; const uniqueIdentifier = new UniqueIdentifier(); const workbooks: WorkbookUtils[] = []; diff --git a/src/tests/receiving/importReceivingTemplate.test.ts b/src/tests/receiving/importReceivingTemplate.test.ts index 4af5261c..f65541b6 100644 --- a/src/tests/receiving/importReceivingTemplate.test.ts +++ b/src/tests/receiving/importReceivingTemplate.test.ts @@ -11,7 +11,7 @@ import { deleteShipment } from '@/utils/shipmentUtils'; import UniqueIdentifier from '@/utils/UniqueIdentifier'; import { WorkbookUtils } from '@/utils/WorkbookUtils'; -test.describe('Import receiving template', () => { +test.describe.skip('Import receiving template', () => { let STOCK_MOVEMENT: StockMovementResponse; const uniqueIdentifier = new UniqueIdentifier(); const workbooks: WorkbookUtils[] = []; diff --git a/src/tests/receiving/lotExpirySystemUpdateOnReceiving.test.ts b/src/tests/receiving/lotExpirySystemUpdateOnReceiving.test.ts index 699d3fa6..ffc849e0 100644 --- a/src/tests/receiving/lotExpirySystemUpdateOnReceiving.test.ts +++ b/src/tests/receiving/lotExpirySystemUpdateOnReceiving.test.ts @@ -9,7 +9,7 @@ import { formatDate, getDateByOffset, getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; import UniqueIdentifier from '@/utils/UniqueIdentifier'; -test.describe('Lot number system expiry date modification on receiving workflow', () => { +test.describe.skip('Lot number system expiry date modification on receiving workflow', () => { const STOCK_MOVEMENTS: StockMovementResponse[] = []; test.afterEach( @@ -168,7 +168,7 @@ test.describe('Lot number system expiry date modification on receiving workflow' }); }); - test.describe('Update existing lot', () => { + test.describe.skip('Update existing lot', () => { const TEST_INPUT_STOCK_EXISTING_LOT = { lotNumber: 'lot', expirationDate: getDateByOffset(getToday(), 3), diff --git a/src/tests/receiving/receiveInbound.test.ts b/src/tests/receiving/receiveInbound.test.ts index f9a175dc..1c88478c 100644 --- a/src/tests/receiving/receiveInbound.test.ts +++ b/src/tests/receiving/receiveInbound.test.ts @@ -7,7 +7,7 @@ import BinLocationUtils from '@/utils/BinLocationUtils'; import { formatDate, getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Receive inbound stock movement', () => { +test.describe.skip('Receive inbound stock movement', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday(); @@ -366,7 +366,7 @@ test.describe('Receive inbound stock movement', () => { }); }); -test.describe('Receive from different locations', () => { +test.describe.skip('Receive from different locations', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday(); diff --git a/src/tests/receiving/receiveInboundWithoutPartialReceiving.test.ts b/src/tests/receiving/receiveInboundWithoutPartialReceiving.test.ts index 04162279..6fea8c42 100644 --- a/src/tests/receiving/receiveInboundWithoutPartialReceiving.test.ts +++ b/src/tests/receiving/receiveInboundWithoutPartialReceiving.test.ts @@ -6,7 +6,7 @@ import { StockMovementResponse } from '@/types'; import { formatDate, getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Receive inbound stock movement in location without partial receiving', () => { +test.describe.skip('Receive inbound stock movement in location without partial receiving', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday(); diff --git a/src/tests/receiving/receiveInboundWithoutPickAndPutawayStock.test.ts b/src/tests/receiving/receiveInboundWithoutPickAndPutawayStock.test.ts index 85de6268..2970ef55 100644 --- a/src/tests/receiving/receiveInboundWithoutPickAndPutawayStock.test.ts +++ b/src/tests/receiving/receiveInboundWithoutPickAndPutawayStock.test.ts @@ -6,7 +6,7 @@ import { StockMovementResponse } from '@/types'; import { getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Receive inbound stock movement in location without pick and putaway stock', () => { +test.describe.skip('Receive inbound stock movement in location without pick and putaway stock', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday(); diff --git a/src/tests/receiving/receiveToHoldBin.test.ts b/src/tests/receiving/receiveToHoldBin.test.ts index 0ea48ec3..ce96004b 100644 --- a/src/tests/receiving/receiveToHoldBin.test.ts +++ b/src/tests/receiving/receiveToHoldBin.test.ts @@ -7,7 +7,7 @@ import BinLocationUtils from '@/utils/BinLocationUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; import UniqueIdentifier from '@/utils/UniqueIdentifier'; -test.describe('Receive item into hold bin', () => { +test.describe.skip('Receive item into hold bin', () => { test.describe.configure({ timeout: 60000 }); //timeout has been added for this test to make sure that the content on bin location tab will load as it can include a lot of data let STOCK_MOVEMENT: StockMovementResponse; diff --git a/src/tests/receiving/receivingStatusChanges.test.ts b/src/tests/receiving/receivingStatusChanges.test.ts index e460e789..b32b4cfe 100644 --- a/src/tests/receiving/receivingStatusChanges.test.ts +++ b/src/tests/receiving/receivingStatusChanges.test.ts @@ -9,7 +9,7 @@ import BinLocationUtils from '@/utils/BinLocationUtils'; import { getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Status changes on sm view page when receive shipment', () => { +test.describe.skip('Status changes on sm view page when receive shipment', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday(); diff --git a/src/tests/receiving/receivingStatusChangesWithoutPartialReceiving.test.ts b/src/tests/receiving/receivingStatusChangesWithoutPartialReceiving.test.ts index 239690c8..86a6d20b 100644 --- a/src/tests/receiving/receivingStatusChangesWithoutPartialReceiving.test.ts +++ b/src/tests/receiving/receivingStatusChangesWithoutPartialReceiving.test.ts @@ -8,7 +8,7 @@ import { StockMovementResponse } from '@/types'; import { getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Status changes on sm view page when receive shipment in location without partial receiving', () => { +test.describe.skip('Status changes on sm view page when receive shipment in location without partial receiving', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday(); diff --git a/src/tests/receiving/rollbackStatusChanges.test.ts b/src/tests/receiving/rollbackStatusChanges.test.ts index 113ec6bd..f3edac36 100644 --- a/src/tests/receiving/rollbackStatusChanges.test.ts +++ b/src/tests/receiving/rollbackStatusChanges.test.ts @@ -9,7 +9,7 @@ import BinLocationUtils from '@/utils/BinLocationUtils'; import { getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Status changes on sm view page when rollback receipts', () => { +test.describe.skip('Status changes on sm view page when rollback receipts', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday(); diff --git a/src/tests/receiving/sortByAlphabeticalOrderAndRemainInputs.test.ts b/src/tests/receiving/sortByAlphabeticalOrderAndRemainInputs.test.ts index 0c1c5f41..393470e7 100644 --- a/src/tests/receiving/sortByAlphabeticalOrderAndRemainInputs.test.ts +++ b/src/tests/receiving/sortByAlphabeticalOrderAndRemainInputs.test.ts @@ -6,7 +6,7 @@ import BinLocationUtils from '@/utils/BinLocationUtils'; import { getDateByOffset, getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Apply sorting by alphabetical order and remain inputs', () => { +test.describe.skip('Apply sorting by alphabetical order and remain inputs', () => { let STOCK_MOVEMENT: StockMovementResponse; const TODAY = getToday(); const EXPECTED_DELIVERY_DATE = getDateByOffset(TODAY, 1); diff --git a/src/tests/receiving/tableShortcutsInReceiving.test.ts b/src/tests/receiving/tableShortcutsInReceiving.test.ts index 80890ec8..429b0b83 100644 --- a/src/tests/receiving/tableShortcutsInReceiving.test.ts +++ b/src/tests/receiving/tableShortcutsInReceiving.test.ts @@ -6,7 +6,7 @@ import { StockMovementResponse } from '@/types'; import BinLocationUtils from '@/utils/BinLocationUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Use table shortcuts on receiving page', () => { +test.describe.skip('Use table shortcuts on receiving page', () => { let STOCK_MOVEMENT: StockMovementResponse; const packLevel1 = 'pallete1'; const packLevel2 = 'box1'; diff --git a/src/tests/receiving/validationsOnDeliverOnDate.test.ts b/src/tests/receiving/validationsOnDeliverOnDate.test.ts index 8d04e27f..920d4785 100644 --- a/src/tests/receiving/validationsOnDeliverOnDate.test.ts +++ b/src/tests/receiving/validationsOnDeliverOnDate.test.ts @@ -7,7 +7,7 @@ import BinLocationUtils from '@/utils/BinLocationUtils'; import { formatDate, getDateByOffset } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Validations on edit Deliver On Date when receiving shipment', () => { +test.describe.skip('Validations on edit Deliver On Date when receiving shipment', () => { let STOCK_MOVEMENT: StockMovementResponse; test.beforeEach( diff --git a/src/tests/receiving/validationsOnEditAndReceive.test.ts b/src/tests/receiving/validationsOnEditAndReceive.test.ts index 044ac73f..e93dfec5 100644 --- a/src/tests/receiving/validationsOnEditAndReceive.test.ts +++ b/src/tests/receiving/validationsOnEditAndReceive.test.ts @@ -7,7 +7,7 @@ import BinLocationUtils from '@/utils/BinLocationUtils'; import { getToday } from '@/utils/DateUtils'; import { deleteShipment } from '@/utils/shipmentUtils'; -test.describe('Assert validation on try to receive not yet shipped inbound', () => { +test.describe.skip('Assert validation on try to receive not yet shipped inbound', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday(); @@ -65,7 +65,7 @@ test.describe('Assert validation on try to receive not yet shipped inbound', () }); }); -test.describe('Validations on edit and receive inbound stock movement', () => { +test.describe.skip('Validations on edit and receive inbound stock movement', () => { let STOCK_MOVEMENT: StockMovementResponse; const description = 'some description'; const dateRequested = getToday();