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
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
await stockMovementService.deleteStockMovement(INBOUND_ID);
});

test('Download documents from Send page of Inbound shipment', async ({
//add temporary skip until issue will be fixed on ob side
test.skip('Download documents from Send page of Inbound shipment', async ({

Check warning on line 46 in src/tests/inbound/createInbound/downloadDocsFromSendPage.test.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected use of the `.skip()` annotation
createInboundPage,
page,
stockMovementShowPage,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ test.describe('Apply sorting by alphabetical order and remain inputs', () => {
receivingPage,
productService,
createInboundPage,
page,
}) => {
await test.step('Go to stock movement show page', async () => {
await stockMovementShowPage.goToPage(STOCK_MOVEMENT.id);
Expand All @@ -96,9 +97,10 @@ test.describe('Apply sorting by alphabetical order and remain inputs', () => {
await createInboundPage.sendStep.isLoaded();
await createInboundPage.previousButton.click();
await createInboundPage.addItemsStep.isLoaded();
await createInboundPage.addItemsStep.reloadButton.click();
await createInboundPage.addItemsStep.confirmReloadPopup.yesButton.click();
await page.reload();
await createInboundPage.previousButton.click();
await createInboundPage.addItemsStep.isLoaded();
await createInboundPage.addItemsStep.addLineButton.focus();
await createInboundPage.addItemsStep.addLineButton.click();
productService.setProduct('5');
const item = await productService.getProduct();
Expand All @@ -111,6 +113,7 @@ test.describe('Apply sorting by alphabetical order and remain inputs', () => {
await createInboundPage.nextButton.click();
await createInboundPage.sendStep.isLoaded();
await expect(createInboundPage.sendStep.sendShipmentButton).toBeVisible();
await createInboundPage.sendStep.sendShipmentButton.focus();
await createInboundPage.sendStep.sendShipmentButton.click();
await stockMovementShowPage.waitForUrl();
await stockMovementShowPage.isLoaded();
Expand Down
Loading