Skip to content

Commit b2bd16a

Browse files
committed
fix vitest deprecations
1 parent 6969315 commit b2bd16a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/shared/__tests__/utils.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ describe('utils', () => {
5858
it('returns the portrait for breed available as male with male wanted', () => {
5959
expectTypeOf(
6060
breedEntryToPortrait(getBreedData('Aria') as BreedEntry, 'male'),
61-
).toMatchTypeOf<PortraitData>();
61+
).toEqualTypeOf<PortraitData>();
6262
});
6363

6464
it('returns the portrait for breed available as female with female wanted', () => {
6565
expectTypeOf(
6666
breedEntryToPortrait(getBreedData('Aria') as BreedEntry, 'female'),
67-
).toMatchTypeOf<PortraitData>();
67+
).toEqualTypeOf<PortraitData>();
6868
});
6969
});
7070

0 commit comments

Comments
 (0)