diff --git a/src/tests/inbound/createInbound/exportItems.test.ts b/src/tests/inbound/createInbound/exportItems.test.ts index f778a4d..a76cd30 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 3ea9b59..9e63d10 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 66db277..aec273b 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 d456c9c..0afaaee 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 a0557ed..4504eda 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 36ce756..ac51d7c 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 d77bb3a..ed29046 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 ceb3c4a..d38e5e2 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 547299b..322275c 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 513606b..5f6c28c 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 f59a31c..dd52885 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 0a8891e..98536a1 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 7c43a4f..9a9dd4d 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 de957a6..6d27ba3 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 4af5261..f65541b 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 699d3fa..ffc849e 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 f9a175d..1c88478 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 0416227..6fea8c4 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 85de626..2970ef5 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 0ea48ec..ce96004 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 e460e78..b32b4cf 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 239690c..86a6d20 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 113ec6b..f3edac3 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 0c1c5f4..393470e 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 80890ec..429b0b8 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 8d04e27..920d478 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 044ac73..e93dfec 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();