Skip to content

Commit b5739eb

Browse files
committed
fix: comment out test names
1 parent 398632d commit b5739eb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/lib/rules/prefer-query-matchers.test.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,20 @@ const getValidAssertions = ({
4444
const expectScreenStatement = `expect(screen.${query}('Hello'))${matcher}`;
4545
return [
4646
{
47-
name: `${expectStatement} with default options of empty validEntries`,
47+
// name: `${expectStatement} with default options of empty validEntries`,
4848
code: wrapExpectInTest(expectStatement),
4949
},
5050
{
51-
name: `${expectStatement} with provided options`,
51+
// name: `${expectStatement} with provided options`,
5252
code: wrapExpectInTest(expectStatement),
5353
options,
5454
},
5555
{
56-
name: `${expectScreenStatement} with default options of empty validEntries`,
56+
// name: `${expectScreenStatement} with default options of empty validEntries`,
5757
code: wrapExpectInTest(expectScreenStatement),
5858
},
5959
{
60-
name: `${expectScreenStatement} with provided options`,
60+
// name: `${expectScreenStatement} with provided options`,
6161
code: wrapExpectInTest(expectScreenStatement),
6262
options,
6363
},
@@ -79,7 +79,7 @@ const getInvalidAssertions = ({
7979
] = options;
8080
return [
8181
{
82-
name: `${expectStatement} with provided options`,
82+
// name: `${expectStatement} with provided options`,
8383
code: wrapExpectInTest(expectStatement),
8484
options,
8585
errors: [
@@ -92,7 +92,7 @@ const getInvalidAssertions = ({
9292
],
9393
},
9494
{
95-
name: `${expectScreenStatement} with provided options`,
95+
// name: `${expectScreenStatement} with provided options`,
9696
code: wrapExpectInTest(expectScreenStatement),
9797
options,
9898
errors: [

0 commit comments

Comments
 (0)