Skip to content

Commit

Permalink
Replace missing tag (#5395)
Browse files Browse the repository at this point in the history
  • Loading branch information
szczecha authored and witoszekdev committed Feb 18, 2025
1 parent 402c88d commit 6ece8a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/cyan-flowers-mate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

Test reports no longer mention users due to test tags matching GitHub usernames. Replace overlooked tag
6 changes: 3 additions & 3 deletions playwright/tests/orders.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ test("TC: SALEOR_84 Create draft order #e2e #draft", async () => {
await draftOrdersPage.expectSuccessBanner({ message: "finalized" });
});

test("TC: SALEOR_191 Refund products from the fully paid order #e2e @refunds", async () => {
test("TC: SALEOR_191 Refund products from the fully paid order #e2e #refunds", async () => {
// All steps of this test pass (including after hooks), but Playwright
// marks it as failed because of exceeding 30s timeout
test.slow();
Expand Down Expand Up @@ -302,7 +302,7 @@ test("TC: SALEOR_191 Refund products from the fully paid order #e2e @refunds", a
await refundPage.expectSuccessBanner({ message: "Refund has been sent" });
});

test("TC: SALEOR_192 Should create a manual refund with a custom amount #e2e @refunds", async () => {
test("TC: SALEOR_192 Should create a manual refund with a custom amount #e2e #refunds", async () => {
const order = ORDERS.fullyPaidOrderWithSeveralTransactions;

await ordersPage.goToExistingOrderPage(order.id);
Expand All @@ -328,7 +328,7 @@ test("TC: SALEOR_192 Should create a manual refund with a custom amount #e2e @re
const orderRefunds = ORDERS.orderWithRefundsInStatusOtherThanSuccess.refunds;

for (const refund of orderRefunds) {
test(`TC: SALEOR_193 Update order with non-manual refund in ${refund.status} status #e2e @refunds`, async () => {
test(`TC: SALEOR_193 Update order with non-manual refund in ${refund.status} status #e2e #refunds`, async () => {
await ordersPage.goToExistingOrderPage(ORDERS.orderWithRefundsInStatusOtherThanSuccess.id);
await ordersPage.orderRefundList.scrollIntoViewIfNeeded();

Expand Down

0 comments on commit 6ece8a5

Please sign in to comment.