feat(F-138): completed feature

This commit is contained in:
chattie
2026-08-22 10:18:37 +02:00
parent 5098723284
commit fb015932b2
23 changed files with 502 additions and 102 deletions

View File

@@ -53,6 +53,7 @@ function buildDeps(
const pricing: PricingServicePort = {
getVariantPrice: async () => undefined,
setVariantPrice: async () => ({}) as never,
seedVariantPrice: async () => undefined,
calculate: async () => PRICE,
};
const reserved = { calls: [] as Array<{ variantId: string; quantity: number }> };
@@ -234,6 +235,7 @@ describe('CheckoutService', () => {
pricing: {
getVariantPrice: async () => undefined,
setVariantPrice: async () => ({}) as never,
seedVariantPrice: async () => undefined,
calculate: async () => PRICE,
},
inventory: {