chore: Move factories and helpers to a better place (#4551)
* chore: Move factories and helpers to a better place * align factory product variant * fix factory cart * add simple store fac * fix tests * fix tests * fix * fix cart seeder
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
const { Region } = require("@medusajs/medusa")
|
||||
|
||||
module.exports = async (dataSource, data = {}) => {
|
||||
const manager = dataSource.manager
|
||||
|
||||
await manager.insert(Region, {
|
||||
id: "region-product-import-0",
|
||||
name: "ImportLand",
|
||||
currency_code: "eur",
|
||||
tax_rate: 0,
|
||||
})
|
||||
|
||||
await manager.insert(Region, {
|
||||
id: "region-product-import-1",
|
||||
name: "denmark",
|
||||
currency_code: "dkk",
|
||||
tax_rate: 0,
|
||||
})
|
||||
|
||||
await manager.insert(Region, {
|
||||
id: "region-product-import-2",
|
||||
name: "Denmark",
|
||||
currency_code: "dkk",
|
||||
tax_rate: 0,
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user