@@ -21,6 +21,7 @@ ruleTester.run('no-jasmine-globals', rule, {
2121  invalid : [ 
2222    { 
2323      code : 'spyOn(some, "object")' , 
24+       output : null , 
2425      errors : [ 
2526        { 
2627          messageId : 'illegalGlobal' , 
@@ -32,6 +33,7 @@ ruleTester.run('no-jasmine-globals', rule, {
3233    } , 
3334    { 
3435      code : 'spyOnProperty(some, "object")' , 
36+       output : null , 
3537      errors : [ 
3638        { 
3739          messageId : 'illegalGlobal' , 
@@ -43,10 +45,12 @@ ruleTester.run('no-jasmine-globals', rule, {
4345    } , 
4446    { 
4547      code : 'fail()' , 
48+       output : null , 
4649      errors : [ {  messageId : 'illegalFail' ,  column : 1 ,  line : 1  } ] , 
4750    } , 
4851    { 
4952      code : 'pending()' , 
53+       output : null , 
5054      errors : [ {  messageId : 'illegalPending' ,  column : 1 ,  line : 1  } ] , 
5155    } , 
5256    { 
@@ -56,10 +60,12 @@ ruleTester.run('no-jasmine-globals', rule, {
5660    } , 
5761    { 
5862      code : 'jasmine.DEFAULT_TIMEOUT_INTERVAL = function() {}' , 
63+       output : null , 
5964      errors : [ {  messageId : 'illegalJasmine' ,  column : 1 ,  line : 1  } ] , 
6065    } , 
6166    { 
6267      code : 'jasmine.addMatchers(matchers)' , 
68+       output : null , 
6369      errors : [ 
6470        { 
6571          messageId : 'illegalMethod' , 
@@ -71,6 +77,7 @@ ruleTester.run('no-jasmine-globals', rule, {
7177    } , 
7278    { 
7379      code : 'jasmine.createSpy()' , 
80+       output : null , 
7481      errors : [ 
7582        { 
7683          messageId : 'illegalMethod' , 
@@ -151,30 +158,37 @@ ruleTester.run('no-jasmine-globals', rule, {
151158    } , 
152159    { 
153160      code : 'jasmine.getEnv()' , 
161+       output : null , 
154162      errors : [ {  messageId : 'illegalJasmine' ,  column : 1 ,  line : 1  } ] , 
155163    } , 
156164    { 
157165      code : 'jasmine.empty()' , 
166+       output : null , 
158167      errors : [ {  messageId : 'illegalJasmine' ,  column : 1 ,  line : 1  } ] , 
159168    } , 
160169    { 
161170      code : 'jasmine.falsy()' , 
171+       output : null , 
162172      errors : [ {  messageId : 'illegalJasmine' ,  column : 1 ,  line : 1  } ] , 
163173    } , 
164174    { 
165175      code : 'jasmine.truthy()' , 
176+       output : null , 
166177      errors : [ {  messageId : 'illegalJasmine' ,  column : 1 ,  line : 1  } ] , 
167178    } , 
168179    { 
169180      code : 'jasmine.arrayWithExactContents()' , 
181+       output : null , 
170182      errors : [ {  messageId : 'illegalJasmine' ,  column : 1 ,  line : 1  } ] , 
171183    } , 
172184    { 
173185      code : 'jasmine.clock()' , 
186+       output : null , 
174187      errors : [ {  messageId : 'illegalJasmine' ,  column : 1 ,  line : 1  } ] , 
175188    } , 
176189    { 
177190      code : 'jasmine.MAX_PRETTY_PRINT_ARRAY_LENGTH = 42' , 
191+       output : null , 
178192      errors : [ {  messageId : 'illegalJasmine' ,  column : 1 ,  line : 1  } ] , 
179193    } , 
180194  ] , 
0 commit comments