[Misc] Fix import in vitest.d.ts

This commit is contained in:
NightKev 2025-07-27 13:32:47 -07:00
parent f3854abc16
commit 7cb2c560ab
2 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import type { Pokemon } from "#field/pokemon";
import type { PokemonType } from "#enums/pokemon-type";
import type { expect } from "vitest";
import { toHaveTypesOptions } from "#test/test-utils/matchers/to-have-types";
import type { toHaveTypesOptions } from "#test/test-utils/matchers/to-have-types";
declare module "vitest" {
interface Assertion {

View File

@ -2,8 +2,7 @@ import { toEqualArrayUnsorted } from "#test/test-utils/matchers/to-equal-array-u
import { toHaveTypes } from "#test/test-utils/matchers/to-have-types";
import { expect } from "vitest";
/**
* @module
/*
* Setup file for custom matchers.
* Make sure to define the call signatures in `test/@types/vitest.d.ts` too!
*/