Merge branch 'develop' into feat/disabling-of-notification

This commit is contained in:
--list
2021-07-02 12:11:45 +02:00
27 changed files with 583 additions and 70 deletions
@@ -19,6 +19,7 @@ module.exports = async (connection, data = {}) => {
const coll = manager.create(ProductCollection, {
id: "test-collection",
handle: "test-collection",
title: "Test collection",
});
@@ -54,6 +55,7 @@ module.exports = async (connection, data = {}) => {
const p = manager.create(Product, {
id: "test-product",
handle: "test-product",
title: "Test product",
profile_id: defaultProfile.id,
description: "test-product-description",
@@ -74,6 +76,10 @@ module.exports = async (connection, data = {}) => {
id: "test-variant",
inventory_quantity: 10,
title: "Test variant",
sku: "test-sku",
ean: "test-ean",
upc: "test-upc",
barcode: "test-barcode",
product_id: "test-product",
prices: [],
options: [{ id: "test-variant-option", value: "Default variant" }],