fix(medusa): Product model before insert hook (#5200)
**What** When the id is provided, the rest of the hook should still apply. At the moment, when the id is provided the hook is skipped
This commit is contained in:
committed by
GitHub
parent
2caff2efc7
commit
240c439beb
@@ -179,7 +179,7 @@ describe("/store/carts", () => {
|
||||
stocked_quantity: 100,
|
||||
})
|
||||
|
||||
const customer = await simpleCustomerFactory(dbConnection, {})
|
||||
const customer = await simpleCustomerFactory(dbConnection, {}, 100)
|
||||
|
||||
const cart = await simpleCartFactory(dbConnection, {
|
||||
email: "testme@email.com",
|
||||
|
||||
@@ -73,7 +73,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -232,7 +232,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -389,7 +389,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -511,7 +511,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -691,7 +691,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -861,7 +861,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "awesome-metal-ball",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -1114,7 +1114,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -1365,7 +1365,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -1576,7 +1576,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -1698,7 +1698,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -1878,7 +1878,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "gorgeous-cotton-table",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -2042,7 +2042,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "awesome-metal-ball",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -2153,7 +2153,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "awesome-metal-ball",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -2271,7 +2271,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "awesome-metal-ball",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
@@ -2390,7 +2390,7 @@ Object {
|
||||
"description": null,
|
||||
"discountable": true,
|
||||
"external_id": null,
|
||||
"handle": null,
|
||||
"handle": "awesome-metal-ball",
|
||||
"height": null,
|
||||
"hs_code": null,
|
||||
"id": "test-product",
|
||||
|
||||
Reference in New Issue
Block a user