@shopware-ag/acceptance-test-suite 12.13.2 → 12.13.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +5 -2
- package/package.json +12 -2
package/dist/index.mjs
CHANGED
|
@@ -11979,8 +11979,11 @@ const BulkEditCustomers = test$e.extend({
|
|
|
11979
11979
|
await AdminCustomerBulkEdit.changeTypeSelect.click();
|
|
11980
11980
|
await AdminCustomerBulkEdit.page.getByText(tagData.changeType).click();
|
|
11981
11981
|
for (const tag of tagData.tags) {
|
|
11982
|
-
await
|
|
11983
|
-
|
|
11982
|
+
await ShopAdmin.expects(async () => {
|
|
11983
|
+
await AdminCustomerBulkEdit.enterTagsSelect.click();
|
|
11984
|
+
await AdminCustomerBulkEdit.enterTagsSelect.fill(tag);
|
|
11985
|
+
await AdminCustomerBulkEdit.filtersResultPopoverItemList.getByText(tag).click({ timeout: 5e3 });
|
|
11986
|
+
}).toPass({ intervals: [1e3, 2e3, 5e3], timeout: 2e4 });
|
|
11984
11987
|
}
|
|
11985
11988
|
}
|
|
11986
11989
|
if (customFieldData) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopware-ag/acceptance-test-suite",
|
|
3
|
-
"version": "12.13.
|
|
3
|
+
"version": "12.13.3",
|
|
4
4
|
"description": "Shopware Acceptance Test Suite",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fixtures",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@axe-core/playwright": "4.11.1",
|
|
43
|
-
"@playwright/test": "1.60.0",
|
|
44
43
|
"@shopware/api-client": "1.4.0",
|
|
45
44
|
"axe-html-reporter": "2.2.11",
|
|
46
45
|
"compare-versions": "6.1.1",
|
|
@@ -49,6 +48,7 @@
|
|
|
49
48
|
"uuid": "14.0.0"
|
|
50
49
|
},
|
|
51
50
|
"devDependencies": {
|
|
51
|
+
"@playwright/test": "1.60.0",
|
|
52
52
|
"@types/node": "25.2.0",
|
|
53
53
|
"@types/uuid": "11.0.0",
|
|
54
54
|
"@typescript/native-preview": "7.0.0-dev.20260205.1",
|
|
@@ -57,8 +57,18 @@
|
|
|
57
57
|
"oxfmt": "0.28.0",
|
|
58
58
|
"oxlint": "1.43.0",
|
|
59
59
|
"oxlint-tsgolint": "0.11.4",
|
|
60
|
+
"playwright-core": "1.60.0",
|
|
60
61
|
"unbuild": "3.6.1"
|
|
61
62
|
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"@playwright/test": "1.60.0",
|
|
65
|
+
"playwright-core": "1.60.0"
|
|
66
|
+
},
|
|
67
|
+
"peerDependenciesMeta": {
|
|
68
|
+
"playwright-core": {
|
|
69
|
+
"optional": true
|
|
70
|
+
}
|
|
71
|
+
},
|
|
62
72
|
"engines": {
|
|
63
73
|
"node": "24.x || 25.x"
|
|
64
74
|
},
|