make the booking in many steps
Build & Deploy / Build & Push Docker Image (push) Successful in 8m27s
Test / Type Check (all packages) (push) Successful in 3m34s
Build & Deploy / Deploy to VPS (push) Successful in 2s
Test / API Unit Tests (push) Failing after 3m16s
Test / Homepage Unit Tests (push) Failing after 2m40s
Test / Storefront Unit Tests (push) Failing after 24s
Test / Admin Unit Tests (push) Failing after 22s
Test / Dashboard Unit Tests (push) Failing after 24s
Test / API Integration Tests (push) Failing after 33s

This commit is contained in:
root
2026-06-29 08:54:41 -04:00
parent ae10f5272f
commit 3d6607e6c8
20 changed files with 3894 additions and 836 deletions
@@ -198,4 +198,74 @@ describe('menu.service', () => {
})
expect(result.items.find((item) => item.label === 'Reports')?.reasons.join(' ')).toContain('STARTER does not include this menu item')
})
it('returns the approved seven-item STARTER owner sidebar in order', async () => {
vi.mocked(prisma.employee.findUniqueOrThrow).mockResolvedValue({
id: 'employee_1',
role: 'OWNER',
isActive: true,
companyId: 'company_1',
} as never)
vi.mocked(prisma.company.findUniqueOrThrow).mockResolvedValue({
id: 'company_1',
name: 'Atlas Cars',
status: 'ACTIVE',
subscription: { plan: 'STARTER', status: 'ACTIVE' },
} as never)
const item = (
systemKey: string,
label: string,
routeOrUrl: string,
icon: string,
displayOrder: number,
plans: string[],
) => ({
id: `item_${systemKey}`,
systemKey,
label,
itemType: 'INTERNAL_PAGE',
routeOrUrl,
icon,
parentId: null,
openInNewTab: false,
isRequired: displayOrder <= 70,
isActive: true,
displayOrder,
roleVisibilities: [{ role: 'OWNER' }],
subscriptionAssignments: plans.map((plan) => ({ plan, displayOrder, isActive: true })),
companyAssignments: [],
})
vi.mocked(prisma.menuItem.findMany).mockResolvedValue([
item('dashboard', 'Dashboard', '/', 'LayoutDashboard', 10, ['STARTER', 'GROWTH', 'PRO']),
item('reservations', 'Reservations', '/reservations', 'Calendar', 20, ['STARTER', 'GROWTH', 'PRO']),
item('fleet', 'Fleet', '/fleet', 'Car', 30, ['STARTER', 'GROWTH', 'PRO']),
item('customers', 'Customers', '/customers', 'Users', 40, ['STARTER', 'GROWTH', 'PRO']),
item('reports', 'Reports', '/reports', 'BarChart2', 50, ['STARTER', 'GROWTH', 'PRO']),
item('billing', 'Billing', '/billing', 'CreditCard', 60, ['STARTER', 'GROWTH', 'PRO']),
item('settings', 'Settings', '/settings', 'Settings', 70, ['STARTER', 'GROWTH', 'PRO']),
item('online-reservations', 'Online Reservations', '/online-reservations', 'Globe', 80, ['GROWTH', 'PRO']),
item('offers', 'Offers', '/offers', 'Tag', 90, ['GROWTH', 'PRO']),
item('team', 'Team', '/team', 'UserPlus', 100, ['GROWTH', 'PRO']),
item('contracts', 'Contracts', '/contracts', 'FileText', 110, ['GROWTH', 'PRO']),
item('notifications', 'Notifications', '/notifications', 'Bell', 120, ['GROWTH', 'PRO']),
item('reviews', 'Reviews', '/reviews', 'Star', 130, ['PRO']),
item('complaints', 'Complaints', '/complaints', 'AlertTriangle', 140, ['PRO']),
{ ...item('subscription', 'Subscription', '/subscription', 'CreditCard', 999, []), isActive: false },
] as never)
const result = await getEmployeeMenu('employee_1')
expect(result.items.map((menuItem) => menuItem.systemKey)).toEqual([
'dashboard',
'reservations',
'fleet',
'customers',
'reports',
'billing',
'settings',
])
})
})