removed changes wrongfully included

This commit is contained in:
--list
2021-07-02 12:38:46 +02:00
parent 7cecc021f4
commit 927a270c6b
4 changed files with 3 additions and 68 deletions
@@ -6,7 +6,6 @@ const {
Product,
ShippingProfile,
ProductVariant,
MoneyAmount,
Image,
} = require("@medusajs/medusa");
@@ -81,14 +80,7 @@ module.exports = async (connection, data = {}) => {
upc: "test-upc",
barcode: "test-barcode",
product_id: "test-product",
prices: [],
prices: [{ id: "test-price", currency_code: "usd", amount: 100 }],
options: [{ id: "test-variant-option", value: "Default variant" }],
});
await manager.insert(MoneyAmount, {
variant_id: "test-variant",
id: "test-price",
currency_code: "usd",
amount: 100,
});
};