Exclude pothog traffic (#5342) #148
Annotations
10 errors and 1 notice
Run playwright tests
Testing stopped early after 10 maximum allowed failures.
|
Run playwright tests:
playwright/tests/attributes.spec.ts#L1
1) [e2e] › attributes.spec.ts:136:7 › TC: SALEOR_127 User should be able to update attribute values in existing e2e product attribute to be updated attribute @e2e @attributes
Test timeout of 35000ms exceeded.
|
Run playwright tests:
playwright/pages/attributesPage.ts#L136
1) [e2e] › attributes.spec.ts:136:7 › TC: SALEOR_127 User should be able to update attribute values in existing e2e product attribute to be updated attribute @e2e @attributes
Error: locator.click: Test timeout of 35000ms exceeded.
Call log:
- waiting for getByTestId('attributes-rows').filter({ hasText: 'e2e product attribute value to be deleted' }).locator(getByTestId('delete-attribute-value-button'))
at ../pages/attributesPage.ts:136
134 | .filter({ hasText: attrName })
135 | .locator(this.deleteAttributeValueButton)
> 136 | .click();
| ^
137 | }
138 |
139 | async clickOnExistingAttrValue(attrName: string) {
at AttributesPage.clickDeleteAttrValueButton (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/attributesPage.ts:136:8)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/attributes.spec.ts:138:26
|
Run playwright tests:
playwright/tests/attributes.spec.ts#L1
2) [e2e] › attributes.spec.ts:136:7 › TC: SALEOR_127 User should be able to update attribute values in existing e2e content attribute to be updated attribute @e2e @attributes
Test timeout of 35000ms exceeded.
|
Run playwright tests:
playwright/pages/attributesPage.ts#L136
2) [e2e] › attributes.spec.ts:136:7 › TC: SALEOR_127 User should be able to update attribute values in existing e2e content attribute to be updated attribute @e2e @attributes
Error: locator.click: Test timeout of 35000ms exceeded.
Call log:
- waiting for getByTestId('attributes-rows').filter({ hasText: 'e2e content attribute value to be deleted' }).locator(getByTestId('delete-attribute-value-button'))
at ../pages/attributesPage.ts:136
134 | .filter({ hasText: attrName })
135 | .locator(this.deleteAttributeValueButton)
> 136 | .click();
| ^
137 | }
138 |
139 | async clickOnExistingAttrValue(attrName: string) {
at AttributesPage.clickDeleteAttrValueButton (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/attributesPage.ts:136:8)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/attributes.spec.ts:138:26
|
Run playwright tests:
playwright/pages/attributesPage.ts#L93
3) [e2e] › attributes.spec.ts:201:7 › TC: SALEOR_129 Delete a single e2e product attribute to be deleted @e2e @attributes
TimeoutError: locator.waitFor: Timeout 30000ms exceeded.
Call log:
- waiting for getByTestId('page-header').getByText('e2e product attribute to be deleted') to be visible
at ../pages/attributesPage.ts:93
91 | await console.log(`Navigates to existing attribute page: ${existingAttributeUrl}`);
92 | await this.page.goto(existingAttributeUrl);
> 93 | await this.pageHeader.getByText(attributeName).waitFor({
| ^
94 | state: "visible",
95 | timeout: 30000,
96 | });
at AttributesPage.gotoExistingAttributePage (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/attributesPage.ts:93:52)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/attributes.spec.ts:202:5
|
Run playwright tests:
playwright/pages/attributesPage.ts#L93
4) [e2e] › attributes.spec.ts:201:7 › TC: SALEOR_129 Delete a single e2e content attribute to be deleted @e2e @attributes
TimeoutError: locator.waitFor: Timeout 30000ms exceeded.
Call log:
- waiting for getByTestId('page-header').getByText('e2e content attribute to be deleted') to be visible
at ../pages/attributesPage.ts:93
91 | await console.log(`Navigates to existing attribute page: ${existingAttributeUrl}`);
92 | await this.page.goto(existingAttributeUrl);
> 93 | await this.pageHeader.getByText(attributeName).waitFor({
| ^
94 | state: "visible",
95 | timeout: 30000,
96 | });
at AttributesPage.gotoExistingAttributePage (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/attributesPage.ts:93:52)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/attributes.spec.ts:202:5
|
Run playwright tests:
playwright/tests/attributes.spec.ts#L1
5) [e2e] › attributes.spec.ts:215:5 › TC: SALEOR_130 Bulk delete attributes @e2e @attributes ─────
Test timeout of 35000ms exceeded.
|
Run playwright tests:
playwright/pages/basePage.ts#L246
5) [e2e] › attributes.spec.ts:215:5 › TC: SALEOR_130 Bulk delete attributes @e2e @attributes ─────
Error: locator.waitFor: Test timeout of 35000ms exceeded.
Call log:
- waiting for locator('[data-testid="data-grid-canvas"]').locator('table tr').first()
at ../pages/basePage.ts:246
244 | await this.waitForDOMToFullyLoad();
245 |
> 246 | await this.gridCanvas.locator("table tr").first().waitFor({ state: "attached" });
| ^
247 |
248 | await this.page.waitForSelector("table tr", { state: "attached" });
249 |
at AttributesPage.findRowIndexBasedOnText (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/basePage.ts:246:55)
at AttributesPage.searchAndFindRowIndexes (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/basePage.ts:271:12)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/attributes.spec.ts:217:3
|
Run playwright tests:
playwright/pages/basePage.ts#L280
6) [e2e] › categories.spec.ts:33:5 › TC: SALEOR_104 Bulk delete categories @e2e @category ────────
Error: expect(received).toEqual(expected) // deep equality
Expected: 0
Received: 2
at ../pages/basePage.ts:280
278 | await this.clickGridCell(0, rowIndex);
279 | }
> 280 | await expect(searchText.length).toEqual(rowIndexes.length);
| ^
281 | }
282 |
283 | async clickListRowBasedOnContainingText(searchText: string) {
at CategoriesPage.checkListRowsBasedOnContainingText (/home/runner/work/saleor-dashboard/saleor-dashboard/playwright/pages/basePage.ts:280:37)
at /home/runner/work/saleor-dashboard/saleor-dashboard/playwright/tests/categories.spec.ts:36:3
|
Run playwright tests
10 failed
[e2e] › attributes.spec.ts:136:7 › TC: SALEOR_127 User should be able to update attribute values in existing e2e product attribute to be updated attribute @e2e @attributes
[e2e] › attributes.spec.ts:136:7 › TC: SALEOR_127 User should be able to update attribute values in existing e2e content attribute to be updated attribute @e2e @attributes
[e2e] › attributes.spec.ts:201:7 › TC: SALEOR_129 Delete a single e2e product attribute to be deleted @e2e @attributes
[e2e] › attributes.spec.ts:201:7 › TC: SALEOR_129 Delete a single e2e content attribute to be deleted @e2e @attributes
[e2e] › attributes.spec.ts:215:5 › TC: SALEOR_130 Bulk delete attributes @e2e @attributes ──────
[e2e] › categories.spec.ts:33:5 › TC: SALEOR_104 Bulk delete categories @e2e @category ─────────
[e2e] › channels.spec.ts:57:5 › TC: SALEOR_98 Edit channel - transaction flow, allow unpaid, authorize, prio high stock @e2e @channels
[e2e] › channels.spec.ts:69:5 › TC: SALEOR_99 Delete channel @e2e @channels ────────────────────
[e2e] › collections.spec.ts:30:5 › TC: SALEOR_113 Edit collection: assign product @collections @e2e
[e2e] › collections.spec.ts:48:5 › TC: SALEOR_114 Bulk delete collections @collections @e2e ────
3 interrupted
[e2e] › customers.spec.ts:108:5 › TC: SALEOR_203 Activate a customer @e2e @customer ────────────
[e2e] › customers.spec.ts:116:5 › TC: SALEOR_204 Delete customer from the details page @e2e @customer
[e2e] › customers.spec.ts:126:5 › TC: SALEOR_205 Bulk delete customers @e2e @customer ──────────
54 did not run
52 passed (3.2m)
|
Loading