From da13aebb0c574d05c656bedec92abf9027202b0f Mon Sep 17 00:00:00 2001 From: aaniya22 Date: Fri, 12 Jun 2026 13:53:55 +0530 Subject: [PATCH] test(Layout-massive-scaling): verify Massive Data Sets and Extreme High Bounds Scaling --- app/layout.massive-scaling.test.tsx | 92 +++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 app/layout.massive-scaling.test.tsx diff --git a/app/layout.massive-scaling.test.tsx b/app/layout.massive-scaling.test.tsx new file mode 100644 index 000000000..3ab34a8d9 --- /dev/null +++ b/app/layout.massive-scaling.test.tsx @@ -0,0 +1,92 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import { describe, expect, it, vi } from 'vitest'; +import RootLayout from './layout'; + +vi.mock('next/font/google', () => ({ + Inter: () => ({ className: 'inter-font' }), +})); + +vi.mock('@vercel/analytics/next', () => ({ + Analytics: () =>
, +})); + +vi.mock('./components/navbar', () => ({ + default: () =>