Rocky_Mountain_Vending/.pnpm-store/v10/files/1c/b12d2ea5ac46ff8957a004142442c68f2c8671befaea6fcc23e35d1b6efbbf60688989724960ff63a46be35873ed67b9bde639750e41c008ea596a53f2fda5
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

10 lines
236 B
Text

import { beforeEach } from 'vitest';
import '@testing-library/jest-dom/vitest';
beforeEach(() => {
// reset dom before each test
const html = document.getElementsByTagName('html')[0];
if (html) {
html.innerHTML = '';
}
});