Moved comment at top of file

This commit is contained in:
Bertie690 2025-09-15 20:58:33 -04:00 committed by Sirz Benjie
parent f52faab436
commit d3e0021073
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -1,3 +1,9 @@
/**
* @module
* Setup file for custom matchers.
* Make sure to define the call signatures in `#test/@types/vitest.d.ts` too!
*/
import { toBeAtPhase } from "#test/test-utils/matchers/to-be-at-phase";
import { toEqualUnsorted } from "#test/test-utils/matchers/to-equal-unsorted";
import { toHaveAbilityApplied } from "#test/test-utils/matchers/to-have-ability-applied";
@ -20,12 +26,6 @@ import { toHaveUsedPP } from "#test/test-utils/matchers/to-have-used-pp";
import { toHaveWeather } from "#test/test-utils/matchers/to-have-weather";
import { expect } from "vitest";
/**
* @module
* Setup file for custom matchers.
* Make sure to define the call signatures in `#test/@types/vitest.d.ts` too!
*/
expect.extend({
toEqualUnsorted,
toHaveKey,