@@ -44,20 +44,20 @@ const getValidAssertions = ({
44
44
const expectScreenStatement = `expect(screen.${ query } ('Hello'))${ matcher } ` ;
45
45
return [
46
46
{
47
- name : `${ expectStatement } with default options of empty validEntries` ,
47
+ // name: `${expectStatement} with default options of empty validEntries`,
48
48
code : wrapExpectInTest ( expectStatement ) ,
49
49
} ,
50
50
{
51
- name : `${ expectStatement } with provided options` ,
51
+ // name: `${expectStatement} with provided options`,
52
52
code : wrapExpectInTest ( expectStatement ) ,
53
53
options,
54
54
} ,
55
55
{
56
- name : `${ expectScreenStatement } with default options of empty validEntries` ,
56
+ // name: `${expectScreenStatement} with default options of empty validEntries`,
57
57
code : wrapExpectInTest ( expectScreenStatement ) ,
58
58
} ,
59
59
{
60
- name : `${ expectScreenStatement } with provided options` ,
60
+ // name: `${expectScreenStatement} with provided options`,
61
61
code : wrapExpectInTest ( expectScreenStatement ) ,
62
62
options,
63
63
} ,
@@ -79,7 +79,7 @@ const getInvalidAssertions = ({
79
79
] = options ;
80
80
return [
81
81
{
82
- name : `${ expectStatement } with provided options` ,
82
+ // name: `${expectStatement} with provided options`,
83
83
code : wrapExpectInTest ( expectStatement ) ,
84
84
options,
85
85
errors : [
@@ -92,7 +92,7 @@ const getInvalidAssertions = ({
92
92
] ,
93
93
} ,
94
94
{
95
- name : `${ expectScreenStatement } with provided options` ,
95
+ // name: `${expectScreenStatement} with provided options`,
96
96
code : wrapExpectInTest ( expectScreenStatement ) ,
97
97
options,
98
98
errors : [
0 commit comments