@@ -88,22 +88,6 @@ ruleTester.run('no-disabled-tests', rule, {
8888 code : 'test.skip("foo", function () {})' ,
8989 errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
9090 } ,
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- } ,
10791 {
10892 code : 'test.concurrent.skip("foo", function () {})' ,
10993 errors : [ { messageId : 'skippedTest' , column : 1 , line : 1 } ] ,
@@ -124,22 +108,6 @@ ruleTester.run('no-disabled-tests', rule, {
124108 code : 'xtest("foo", function () {})' ,
125109 errors : [ { messageId : 'disabledTest' , column : 1 , line : 1 } ] ,
126110 } ,
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- } ,
143111 {
144112 code : 'it("has title but no callback")' ,
145113 errors : [ { messageId : 'missingFunction' , column : 1 , line : 1 } ] ,
0 commit comments