@shopware-ag/acceptance-test-suite 12.13.2 → 12.13.4

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.d.mts CHANGED
@@ -136,6 +136,7 @@ type Product = Omit<components["schemas"]["Product"], "price" | "prices" | "opti
136
136
  tags?: Record<string, string>[];
137
137
  visibilities?: Record<string, unknown>[];
138
138
  variantListingConfig?: VariantListingConfig;
139
+ type?: string;
139
140
  };
140
141
  type ProductReview = components["schemas"]["ProductReview"] & {
141
142
  id: string;
package/dist/index.d.ts CHANGED
@@ -136,6 +136,7 @@ type Product = Omit<components["schemas"]["Product"], "price" | "prices" | "opti
136
136
  tags?: Record<string, string>[];
137
137
  visibilities?: Record<string, unknown>[];
138
138
  variantListingConfig?: VariantListingConfig;
139
+ type?: string;
139
140
  };
140
141
  type ProductReview = components["schemas"]["ProductReview"] & {
141
142
  id: string;
package/dist/index.mjs CHANGED
@@ -4296,7 +4296,7 @@ class TestDataService {
4296
4296
  * @param currencyId - The uuid of the currency to use for the product pricing.
4297
4297
  */
4298
4298
  async createDigitalProduct(content = "Lorem ipsum dolor", overrides = {}, taxId = this.defaultTaxId, currencyId = this.defaultCurrencyId) {
4299
- const product = await this.createBasicProduct(overrides, taxId, currencyId);
4299
+ const product = await this.createBasicProduct({ type: "digital", ...overrides }, taxId, currencyId);
4300
4300
  const media = await this.createMediaTXT(content);
4301
4301
  await this.assignProductDownload(product.id, media.id);
4302
4302
  return product;
@@ -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 AdminCustomerBulkEdit.enterTagsSelect.click();
11983
- await AdminCustomerBulkEdit.page.getByText(tag).click();
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.2",
3
+ "version": "12.13.4",
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
  },