mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-07 07:59:26 +02:00
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
import { toEqualArrayUnsorted } from "#test/test-utils/matchers/to-equal-array-unsorted";
|
|
import { toHaveTypes } from "#test/test-utils/matchers/to-have-types";
|
|
import { expect } from "vitest";
|
|
|
|
/*
|
|
* Setup file for custom matchers.
|
|
* Make sure to define the call signatures in `test/@types/vitest.d.ts` too!
|
|
*/
|
|
|
|
expect.extend({
|
|
toEqualArrayUnsorted,
|
|
toHaveTypes,
|
|
});
|