Relocate misplaced frontend files
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||
import type { Mock } from "vitest";
|
||||
import { ENDPOINTS } from "./endpoints";
|
||||
import { fetchBansByCountry } from "./map";
|
||||
import { get } from "./client";
|
||||
import { ENDPOINTS } from "../endpoints";
|
||||
import { fetchBansByCountry } from "../map";
|
||||
import { get } from "../client";
|
||||
|
||||
vi.mock("./client", () => ({
|
||||
vi.mock("../client", () => ({
|
||||
get: vi.fn(),
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user