Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions types/vitest/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ interface CustomMatchers<R = unknown> {
toBeValidEpochCommittee(opts: {committeeCount: number; validatorsPerCommittee: number; slotsPerEpoch: number}): R;
/**
* @deprecated
* We highly recommend to not use this matcher instead use detail test case
* We highly recommend to not use this matcher instead use detailed test case
* where you don't need message to explain assertion
*
* @example
Expand All @@ -27,7 +27,7 @@ interface CustomMatchers<R = unknown> {
toBeWithMessage(expected: unknown, message: string): R;
/**
* @deprecated
* We highly recommend to not use this matcher instead use detail test case with .toEqual
* We highly recommend to not use this matcher instead use detailed test case with .toEqual
* where you don't need message to explain assertion
* */
toEqualWithMessage(expected: unknown, message: string): R;
Expand Down