From 2ccb268882c650c4ad75a99f0602df21c093e50e Mon Sep 17 00:00:00 2001 From: Anna Szczech Date: Wed, 5 Feb 2025 16:57:34 +0100 Subject: [PATCH] replace missing tag --- .changeset/cyan-flowers-mate.md | 5 +++++ playwright/tests/orders.spec.ts | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changeset/cyan-flowers-mate.md diff --git a/.changeset/cyan-flowers-mate.md b/.changeset/cyan-flowers-mate.md new file mode 100644 index 00000000000..8d698aa4a50 --- /dev/null +++ b/.changeset/cyan-flowers-mate.md @@ -0,0 +1,5 @@ +--- +"saleor-dashboard": patch +--- + +Test reports no longer mention users due to test tags matching GitHub usernames. Replace overlooked tag diff --git a/playwright/tests/orders.spec.ts b/playwright/tests/orders.spec.ts index 5cbc1b266dc..61f1a2ccf4d 100644 --- a/playwright/tests/orders.spec.ts +++ b/playwright/tests/orders.spec.ts @@ -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(); @@ -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); @@ -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();