Skip to content

Commit f3021c9

Browse files
authored
fix(experimental-utils): add name property to test case interface (#4067)
1 parent d8df233 commit f3021c9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/experimental-utils/src/ts-eslint/RuleTester.ts

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ import {
99
} from './Rule';
1010

1111
interface ValidTestCase<TOptions extends Readonly<unknown[]>> {
12+
/**
13+
* Name for the test case.
14+
*/
15+
readonly name?: string;
1216
/**
1317
* Code for the test case.
1418
*/

0 commit comments

Comments
 (0)