Add support for tax inclusivity to region and store (#7808)
This also includes rework of the currency model for the Store module. This change is breaking as existing stores won't have any supported currencies set, so users would need to go to the store settings again and choose the supported currencies there.
This commit is contained in:
@@ -29,13 +29,18 @@ medusaIntegrationTestRunner({
|
||||
it("should correctly implement the entire lifecycle of a store", async () => {
|
||||
const createdStore = await service.createStores({
|
||||
name: "Test store",
|
||||
supported_currency_codes: ["usd"],
|
||||
supported_currencies: [{ currency_code: "usd", is_default: true }],
|
||||
})
|
||||
|
||||
expect(createdStore).toEqual(
|
||||
expect.objectContaining({
|
||||
id: createdStore.id,
|
||||
supported_currency_codes: ["usd"],
|
||||
supported_currencies: [
|
||||
expect.objectContaining({
|
||||
currency_code: "usd",
|
||||
is_default: true,
|
||||
}),
|
||||
],
|
||||
name: "Test store",
|
||||
})
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user