@@ -29,19 +29,6 @@ describe("eslint integration", function() {
29
29
console . error = STDERR
30
30
} )
31
31
32
- describe ( "eslintrc files with not supported plugins in it" , function ( ) {
33
- it ( "does not raise any error" , function ( ) {
34
- this . timeout ( 3000 )
35
-
36
- function executeUnsupportedPlugins ( ) {
37
- executeConfig ( "with_unsupported_plugins/config.json" )
38
- }
39
-
40
- expect ( executeUnsupportedPlugins ) . to . not . throw ( )
41
- expect ( consoleMock . output ) . to . not . be . empty
42
- } )
43
- } )
44
-
45
32
describe ( "validating config" , function ( ) {
46
33
it ( "raise on file not found" , function ( ) {
47
34
function executeNoLintrc ( ) {
@@ -70,19 +57,6 @@ describe("eslint integration", function() {
70
57
} )
71
58
} )
72
59
73
- describe ( "extends plugin" , function ( ) {
74
- it ( "loads the plugin and does not include repeated issues of not found rules" , function ( ) {
75
- this . timeout ( 8000 )
76
-
77
- executeConfig ( "extends_airbnb/config.json" )
78
-
79
- const ruleDefinitionIssues = consoleMock . output . filter ( function ( o ) {
80
- return o . includes ( "Definition for rule" )
81
- } )
82
- expect ( ruleDefinitionIssues ) . to . be . empty
83
- } )
84
- } )
85
-
86
60
describe ( "sanitization" , function ( ) {
87
61
function withMinifiedSource ( config , cb , done ) {
88
62
temp . mkdir ( "code" , function ( err , directory ) {
@@ -193,15 +167,4 @@ describe("eslint integration", function() {
193
167
)
194
168
} )
195
169
} )
196
-
197
- describe ( "output" , function ( ) {
198
- it ( "is not messed up" , function ( ) {
199
- this . timeout ( 5000 )
200
-
201
- executeConfig ( "output_mess/config.json" )
202
-
203
- expect ( consoleMock . output ) . to . have . lengthOf ( 1 )
204
- expect ( consoleMock . output [ 0 ] ) . to . match ( / ^ \{ .* / )
205
- } )
206
- } )
207
170
} )
0 commit comments