Update product list tests

This commit is contained in:
Dawid Tarasiuk 2020-06-12 16:44:35 +02:00
parent b001c74af2
commit 1e93827deb
3 changed files with 583 additions and 163 deletions

View file

@ -34,7 +34,7 @@ const ProductVariantPrice: React.FC<ProductVariantPriceProps> = props => {
const classes = useStyles(props);
const intl = useIntl();
const formErrors = getFormErrors(["price_override", "cost_price"], errors);
const formErrors = getFormErrors(["price", "cost_price"], errors);
return (
<Card>
@ -48,13 +48,13 @@ const ProductVariantPrice: React.FC<ProductVariantPriceProps> = props => {
<div className={classes.grid}>
<div>
<PriceField
error={!!formErrors.price_override}
error={!!formErrors.price}
name="price"
label={intl.formatMessage({
defaultMessage: "Selling price override"
})}
hint={
getProductErrorMessage(formErrors.price_override, intl) ||
getProductErrorMessage(formErrors.price, intl) ||
intl.formatMessage({
defaultMessage: "Optional",
description: "optional field",

View file

@ -318,11 +318,6 @@ export const products = (
{
__typename: "Product",
attributes: [],
basePrice: {
__typename: "Money",
amount: 15,
currency: "USD"
},
id: "UHJvZHVjdDo2MQ==",
isAvailable: true,
isPublished: true,
@ -335,16 +330,37 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 15,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 35,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 49,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [],
basePrice: {
__typename: "Money",
amount: 15,
currency: "USD"
},
id: "UHJvZHVjdDo2NA==",
isAvailable: true,
isPublished: false,
@ -357,16 +373,37 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 15,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 30,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 49,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [],
basePrice: {
__typename: "Money",
amount: 15,
currency: "USD"
},
id: "UHJvZHVjdDo2NQ==",
isAvailable: true,
isPublished: false,
@ -379,8 +416,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 15,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 30,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 49,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -399,11 +462,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 3,
currency: "USD"
},
id: "UHJvZHVjdDo3NQ==",
isAvailable: true,
isPublished: true,
@ -416,8 +474,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -436,11 +520,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 3,
currency: "USD"
},
id: "UHJvZHVjdDo3Ng==",
isAvailable: true,
isPublished: true,
@ -453,8 +532,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -473,11 +578,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 3,
currency: "USD"
},
id: "UHJvZHVjdDo3Mg==",
isAvailable: true,
isPublished: true,
@ -490,8 +590,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -510,11 +636,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 3,
currency: "USD"
},
id: "UHJvZHVjdDo3MQ==",
isAvailable: true,
isPublished: true,
@ -527,8 +648,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -547,11 +694,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 3,
currency: "USD"
},
id: "UHJvZHVjdDo3NA==",
isAvailable: true,
isPublished: true,
@ -564,8 +706,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -584,11 +752,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 3,
currency: "USD"
},
id: "UHJvZHVjdDo3OQ==",
isAvailable: true,
isPublished: false,
@ -601,8 +764,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -621,11 +810,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 3,
currency: "USD"
},
id: "UHJvZHVjdDo3Mw==",
isAvailable: true,
isPublished: true,
@ -638,8 +822,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -658,11 +868,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 3,
currency: "USD"
},
id: "UHJvZHVjdDo3OA==",
isAvailable: true,
isPublished: true,
@ -675,8 +880,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -695,11 +926,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 30,
currency: "USD"
},
id: "UHJvZHVjdDo4OQ==",
isAvailable: true,
isPublished: true,
@ -712,8 +938,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -732,11 +984,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 30,
currency: "USD"
},
id: "UHJvZHVjdDoxMDc=",
isAvailable: true,
isPublished: true,
@ -749,8 +996,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -769,11 +1042,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 30,
currency: "USD"
},
id: "UHJvZHVjdDoxMDg=",
isAvailable: true,
isPublished: true,
@ -786,8 +1054,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -806,11 +1100,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 30,
currency: "USD"
},
id: "UHJvZHVjdDoxMDk=",
isAvailable: true,
isPublished: true,
@ -823,8 +1112,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -843,11 +1158,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 30,
currency: "USD"
},
id: "UHJvZHVjdDoxMTA=",
isAvailable: true,
isPublished: true,
@ -860,8 +1170,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -880,11 +1216,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 30,
currency: "USD"
},
id: "UHJvZHVjdDoxMTU=",
isAvailable: true,
isPublished: false,
@ -897,8 +1228,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -917,11 +1274,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 30,
currency: "USD"
},
id: "UHJvZHVjdDoxMTY=",
isAvailable: true,
isPublished: true,
@ -934,8 +1286,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -954,11 +1332,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 30,
currency: "USD"
},
id: "UHJvZHVjdDoxMTc=",
isAvailable: true,
isPublished: true,
@ -971,8 +1344,34 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
},
{
__typename: "Product",
attributes: [
@ -991,11 +1390,6 @@ export const products = (
]
}
],
basePrice: {
__typename: "Money",
amount: 20,
currency: "USD"
},
id: "UHJvZHVjdDo4NQ==",
isAvailable: true,
isPublished: false,
@ -1008,7 +1402,33 @@ export const products = (
thumbnail: {
__typename: "Image",
url: placeholderImage
},
variants: [
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 5,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 7,
currency: "USD"
}
},
{
__typename: "ProductVariant",
price: {
__typename: "Money",
amount: 3,
currency: "USD"
}
}
]
}
];

View file

@ -124803,7 +124803,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$15.00
From $15.00 to $49.00
</td>
</tr>
<tr
@ -124868,7 +124868,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$15.00
From $15.00 to $49.00
</td>
</tr>
<tr
@ -124933,7 +124933,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$15.00
From $15.00 to $49.00
</td>
</tr>
<tr
@ -124998,7 +124998,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125063,7 +125063,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125128,7 +125128,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125193,7 +125193,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125258,7 +125258,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125323,7 +125323,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125388,7 +125388,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125453,7 +125453,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125518,7 +125518,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125583,7 +125583,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125648,7 +125648,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125713,7 +125713,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125778,7 +125778,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125843,7 +125843,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125908,7 +125908,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -125973,7 +125973,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -126038,7 +126038,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$20.00
From $3.00 to $7.00
</td>
</tr>
</tbody>
@ -127398,7 +127398,7 @@ exports[`Storyshots Views / Products / Product list not published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$15.00
From $15.00 to $49.00
</td>
</tr>
<tr
@ -127463,7 +127463,7 @@ exports[`Storyshots Views / Products / Product list not published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$15.00
From $15.00 to $49.00
</td>
</tr>
<tr
@ -127528,7 +127528,7 @@ exports[`Storyshots Views / Products / Product list not published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -127593,7 +127593,7 @@ exports[`Storyshots Views / Products / Product list not published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -127658,7 +127658,7 @@ exports[`Storyshots Views / Products / Product list not published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$20.00
From $3.00 to $7.00
</td>
</tr>
</tbody>
@ -128124,7 +128124,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$15.00
From $15.00 to $49.00
</td>
</tr>
<tr
@ -128189,7 +128189,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128254,7 +128254,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128319,7 +128319,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128384,7 +128384,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128449,7 +128449,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128514,7 +128514,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128579,7 +128579,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$3.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128644,7 +128644,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128709,7 +128709,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128774,7 +128774,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128839,7 +128839,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128904,7 +128904,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -128969,7 +128969,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
<tr
@ -129034,7 +129034,7 @@ exports[`Storyshots Views / Products / Product list published 1`] = `
<td
class="MuiTableCell-root-id MuiTableCell-body-id ProductList-colPrice-id"
>
$30.00
From $3.00 to $7.00
</td>
</tr>
</tbody>