********What********
Add `joinSalesChannels util to stock locations
Add the following endpoints to medusa-react
- inventory items
- mutations
- update
- delete
- update location level
- delete location level
- create location level
- queries
- list inventory items
- get inventory item
- list location levels
- Stock locations
- mutations
- create stock location
- update stock location
- delete stock location
- queries
- list stock locations
- get stock locatoin
- Variants
- queries
- get inventory
- Reservations
- mutations
- create reservation
- update reservation
- delete reservation
- queries
- list reservations
- get reservation
- sales channels
- mutations
- associate location with sc
- remove location association
**Why**
- Update clients to reflect new api endpoints in the core with inventory modules
Co-authored-by: Philip Korsholm <88927411+pKorsholm@users.noreply.github.com>
76 lines
2.2 KiB
TypeScript
76 lines
2.2 KiB
TypeScript
import {
|
|
useAdminInventoryItem,
|
|
useAdminInventoryItemLocationLevels,
|
|
useAdminInventoryItems,
|
|
useAdminPriceList,
|
|
useAdminPriceLists,
|
|
} from "../../../../src"
|
|
import { renderHook } from "@testing-library/react-hooks"
|
|
import { fixtures } from "../../../../mocks/data"
|
|
import { createWrapper } from "../../../utils"
|
|
|
|
describe("useAdminInventoryItems hook", () => {
|
|
test("returns a list of inventory items", async () => {
|
|
const inventoryItems = fixtures.list("inventory_item")
|
|
const { result, waitFor } = renderHook(() => useAdminInventoryItems(), {
|
|
wrapper: createWrapper(),
|
|
})
|
|
|
|
await waitFor(() => result.current.isSuccess)
|
|
|
|
expect(result.current.response.status).toEqual(200)
|
|
expect(result.current.inventory_items).toEqual(inventoryItems)
|
|
})
|
|
})
|
|
|
|
describe("useAdminInventoryItem hook", () => {
|
|
test("returns a single inventory item", async () => {
|
|
const inventoryItem = fixtures.get("inventory_item")
|
|
const { result, waitFor } = renderHook(
|
|
() => useAdminInventoryItem(inventoryItem.id),
|
|
{
|
|
wrapper: createWrapper(),
|
|
}
|
|
)
|
|
|
|
await waitFor(() => result.current.isSuccess)
|
|
|
|
expect(result.current.response.status).toEqual(200)
|
|
expect(result.current.inventory_item).toEqual(inventoryItem)
|
|
})
|
|
})
|
|
|
|
describe("useAdminInventoryItem hook", () => {
|
|
test("returns a location levels for an inventory item", async () => {
|
|
const inventoryItem = fixtures.get("inventory_item")
|
|
const { result, waitFor } = renderHook(
|
|
() => useAdminInventoryItemLocationLevels(inventoryItem.id),
|
|
{
|
|
wrapper: createWrapper(),
|
|
}
|
|
)
|
|
|
|
await waitFor(() => result.current.isSuccess)
|
|
|
|
expect(result.current.response.status).toEqual(200)
|
|
expect(result.current.inventory_item).toEqual(inventoryItem)
|
|
})
|
|
})
|
|
|
|
describe("useAdminPriceList hook", () => {
|
|
test("returns a price list", async () => {
|
|
const priceList = fixtures.get("price_list")
|
|
const { result, waitFor } = renderHook(
|
|
() => useAdminPriceList(priceList.id),
|
|
{
|
|
wrapper: createWrapper(),
|
|
}
|
|
)
|
|
|
|
await waitFor(() => result.current.isSuccess)
|
|
|
|
expect(result.current.response.status).toEqual(200)
|
|
expect(result.current.price_list).toEqual(priceList)
|
|
})
|
|
})
|