@@ -88,22 +88,6 @@ ruleTester.run('no-disabled-tests', rule, {
88
88
code : 'test.skip("foo", function () {})' ,
89
89
errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
90
90
} ,
91
- {
92
- code : 'it.skip.each``("foo", function () {})' ,
93
- errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
94
- } ,
95
- {
96
- code : 'test.skip.each``("foo", function () {})' ,
97
- errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
98
- } ,
99
- {
100
- code : 'it.skip.each([])("foo", function () {})' ,
101
- errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
102
- } ,
103
- {
104
- code : 'test.skip.each([])("foo", function () {})' ,
105
- errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
106
- } ,
107
91
{
108
92
code : 'test.concurrent.skip("foo", function () {})' ,
109
93
errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
@@ -124,22 +108,6 @@ ruleTester.run('no-disabled-tests', rule, {
124
108
code : 'xtest("foo", function () {})' ,
125
109
errors : [ { messageId : 'disabledTest' , column : 1 , line : 1 } ] ,
126
110
} ,
127
- {
128
- code : 'xit.each``("foo", function () {})' ,
129
- errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
130
- } ,
131
- {
132
- code : 'xtest.each``("foo", function () {})' ,
133
- errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
134
- } ,
135
- {
136
- code : 'xit.each([])("foo", function () {})' ,
137
- errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
138
- } ,
139
- {
140
- code : 'xtest.each([])("foo", function () {})' ,
141
- errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
142
- } ,
143
111
{
144
112
code : 'it("has title but no callback")' ,
145
113
errors : [ { messageId : 'missingFunction' , column : 1 , line : 1 } ] ,
0 commit comments