Skip to content

Commit

Permalink
tests(integration): Randomize option value name (#2918)
Browse files Browse the repository at this point in the history
  • Loading branch information
pKorsholm authored Dec 29, 2022
1 parent 645e0d0 commit 90d774f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand All @@ -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
Expand All @@ -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,
Expand All @@ -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,
})
}

Expand Down

0 comments on commit 90d774f

Please sign in to comment.