import React from 'react'; import { describe, expect, it, vi } from 'vitest'; import { render, screen } from '@testing-library/react'; import { MemoryRouter } from 'react-router-dom'; import { MissionActionCard } from '../HomePage'; vi.mock('../../context/EventBrandingContext', () => ({ useEventBranding: () => ({ branding: { primaryColor: '#FF5A5F', secondaryColor: '#FFF8F5', buttons: { radius: 12 }, typography: {}, fontFamily: 'Montserrat', }, }), })); vi.mock('../../lib/emotionTheme', () => ({ getEmotionTheme: () => ({ gradientBackground: 'linear-gradient(135deg, #FF5A5F, #FFF8F5)', }), getEmotionIcon: () => '🙂', })); vi.mock('swiper/react', () => ({ Swiper: ({ children }: { children: React.ReactNode }) =>