Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/tests/inbound/createInbound/exportItems.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
});
});

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 ({

Check warning on line 210 in src/tests/inbound/createInbound/exportItems.test.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected use of the `.skip()` annotation
inboundListPage,
stockMovementShowPage,
stockMovementService,
Expand Down Expand Up @@ -270,7 +270,7 @@
});

// 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 ({

Check warning on line 273 in src/tests/inbound/createInbound/exportItems.test.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected use of the `.skip()` annotation
inboundListPage,
stockMovementShowPage,
stockMovementService,
Expand Down
4 changes: 2 additions & 2 deletions src/tests/inbound/listPage/receiptStatusFilter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
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 ({

Check warning on line 176 in src/tests/inbound/listPage/receiptStatusFilter.test.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected use of the `.skip()` annotation
inboundListPage,
}) => {
await test.step('Go to inbound list page', async () => {
Expand Down Expand Up @@ -269,7 +269,7 @@
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 ({

Check warning on line 272 in src/tests/inbound/listPage/receiptStatusFilter.test.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected use of the `.skip()` annotation
inboundListPage,
}) => {
await test.step('Go to inbound list page', async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/tests/inbound/listPage/searchFilter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
await stockMovementService.deleteStockMovement(STOCK_MOVEMENT.id);
});

test('Search stock movement by identifier', async ({ inboundListPage }) => {
test.skip('Search stock movement by identifier', async ({ inboundListPage }) => {

Check warning on line 19 in src/tests/inbound/listPage/searchFilter.test.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected use of the `.skip()` annotation
await test.step('Go to inbound list page', async () => {
await inboundListPage.goToPage();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
}
);

test('Rollback last receipt behavior when putaway created', async ({
test.skip('Rollback last receipt behavior when putaway created', async ({

Check warning on line 95 in src/tests/putaway/rollbackLastReceiptWhenPutawayCreated.test.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected use of the `.skip()` annotation
stockMovementShowPage,
navbar,
createPutawayPage,
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/assertBinLocationField.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
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', () => {

Check warning on line 9 in src/tests/receiving/assertBinLocationField.test.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected use of the `.skip()` annotation
let STOCK_MOVEMENT: StockMovementResponse;

test.beforeEach(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/assertCreationOfReceivingBin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/assertQtyInputs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/assertRecipientField.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/cancelRemainingQty.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
6 changes: 3 additions & 3 deletions src/tests/receiving/editBinLocationWhenReceive.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/tests/receiving/editOriginalLineQtyTo0.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/editsInReceiving.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/exportReceivingTemplate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [];
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/importReceivingTemplate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [];
Expand Down
4 changes: 2 additions & 2 deletions src/tests/receiving/lotExpirySystemUpdateOnReceiving.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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),
Expand Down
4 changes: 2 additions & 2 deletions src/tests/receiving/receiveInbound.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/receiveToHoldBin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/receivingStatusChanges.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/rollbackStatusChanges.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/tableShortcutsInReceiving.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion src/tests/receiving/validationsOnDeliverOnDate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions src/tests/receiving/validationsOnEditAndReceive.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down
Loading