tests(integration): Randomize option value name (#2918)
This commit is contained in:
@@ -14,7 +14,7 @@ export type ProductVariantFactoryData = {
|
||||
inventory_quantity?: number
|
||||
title?: string
|
||||
options?: { option_id: string; value: string }[]
|
||||
prices?: { currency: string; amount: number, region_id?: string }[]
|
||||
prices?: { currency: string; amount: number; region_id?: string }[]
|
||||
}
|
||||
|
||||
export const simpleProductVariantFactory = async (
|
||||
@@ -32,7 +32,7 @@ export const simpleProductVariantFactory = async (
|
||||
const toSave = manager.create(ProductVariant, {
|
||||
id,
|
||||
product_id: data.product_id,
|
||||
sku: data.sku ,
|
||||
sku: data.sku,
|
||||
inventory_quantity:
|
||||
typeof data.inventory_quantity !== "undefined"
|
||||
? data.inventory_quantity
|
||||
@@ -45,7 +45,7 @@ export const simpleProductVariantFactory = async (
|
||||
const options = data.options || [{ option_id: "test-option", value: "Large" }]
|
||||
for (const o of options) {
|
||||
await manager.insert(ProductOptionValue, {
|
||||
id: `${o.value}-${o.option_id}`,
|
||||
id: `${variant.id}-${o.option_id ?? Math.random()}`,
|
||||
value: o.value,
|
||||
variant_id: id,
|
||||
option_id: o.option_id,
|
||||
@@ -59,7 +59,7 @@ export const simpleProductVariantFactory = async (
|
||||
variant_id: id,
|
||||
currency_code: p.currency,
|
||||
amount: p.amount,
|
||||
region_id: p.region_id ,
|
||||
region_id: p.region_id,
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user