style(web): fix biome import order in test files

This commit is contained in:
Offending Commit
2026-05-03 16:54:18 -05:00
parent 8f5a6aa7e9
commit 784cbee870
2 changed files with 5 additions and 9 deletions

View File

@@ -1,14 +1,10 @@
import { describe, it, expect } from "vitest";
import { render, screen } from "@testing-library/react";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import {
createMemoryHistory,
createRouter,
RouterProvider,
} from "@tanstack/react-router";
import { routeTree } from "@/routeTree.gen";
import { createMemoryHistory, createRouter, RouterProvider } from "@tanstack/react-router";
import { render, screen } from "@testing-library/react";
import { describe, expect, it } from "vitest";
import { DemoProvider } from "@/context/DemoContext";
import { useDemo } from "@/hooks/useDemo";
import { routeTree } from "@/routeTree.gen";
function renderAt(initialPath: string) {
const router = createRouter({

View File

@@ -1,6 +1,6 @@
import "@testing-library/jest-dom/vitest";
import { afterEach, vi } from "vitest";
import { cleanup } from "@testing-library/react";
import { afterEach, vi } from "vitest";
// jsdom doesn't implement matchMedia; theme code reads it on mount.
if (!window.scrollTo) {