Skip to content

Commit

Permalink
fix: comment out test names
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingItWrong committed May 9, 2023
1 parent 398632d commit b5739eb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/lib/rules/prefer-query-matchers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,20 @@ const getValidAssertions = ({
const expectScreenStatement = `expect(screen.${query}('Hello'))${matcher}`;
return [
{
name: `${expectStatement} with default options of empty validEntries`,
// name: `${expectStatement} with default options of empty validEntries`,
code: wrapExpectInTest(expectStatement),
},
{
name: `${expectStatement} with provided options`,
// name: `${expectStatement} with provided options`,
code: wrapExpectInTest(expectStatement),
options,
},
{
name: `${expectScreenStatement} with default options of empty validEntries`,
// name: `${expectScreenStatement} with default options of empty validEntries`,
code: wrapExpectInTest(expectScreenStatement),
},
{
name: `${expectScreenStatement} with provided options`,
// name: `${expectScreenStatement} with provided options`,
code: wrapExpectInTest(expectScreenStatement),
options,
},
Expand All @@ -79,7 +79,7 @@ const getInvalidAssertions = ({
] = options;
return [
{
name: `${expectStatement} with provided options`,
// name: `${expectStatement} with provided options`,
code: wrapExpectInTest(expectStatement),
options,
errors: [
Expand All @@ -92,7 +92,7 @@ const getInvalidAssertions = ({
],
},
{
name: `${expectScreenStatement} with provided options`,
// name: `${expectScreenStatement} with provided options`,
code: wrapExpectInTest(expectScreenStatement),
options,
errors: [
Expand Down

0 comments on commit b5739eb

Please sign in to comment.