We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c6fef0 commit a986577Copy full SHA for a986577
2 files changed
app/page.test.tsx
@@ -29,6 +29,10 @@ vi.mock('next/link', () => ({
29
),
30
}));
31
32
+vi.mock('@/utils/tracking', () => ({
33
+ trackUser: vi.fn(),
34
+}));
35
+
36
// Mock GSAP so FeatureCards don't break in JSDOM
37
vi.mock('gsap', () => {
38
const tween = { kill: vi.fn() };
app/page.tsx
@@ -1,6 +1,5 @@
1
'use client';
2
import { trackUser } from '@/utils/tracking';
3
-import InteractiveViewer from '@/components/InteractiveViewer';
4
import Link from 'next/link';
5
import { useRef, useState, useEffect } from 'react';
6
import { AnimatePresence, motion } from 'framer-motion';
0 commit comments