File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ var _Raven = window.Raven,
31
31
var Raven = {
32
32
VERSION : '<%= pkg.version %>' ,
33
33
34
- debug : false ,
34
+ debug : true ,
35
35
36
36
/*
37
37
* Allow multiple versions of Raven to be installed.
Original file line number Diff line number Diff line change @@ -225,14 +225,14 @@ describe('globals', function() {
225
225
it ( 'should not write to console.error when Raven is not configured and Raven.debug is false' , function ( ) {
226
226
hasJSON = true ; // be explicit
227
227
globalServer = undefined ;
228
+ Raven . debug = false ;
228
229
this . sinon . stub ( console , 'error' ) ;
229
230
isSetup ( ) ;
230
231
assert . isFalse ( console . error . calledOnce ) ;
231
232
} ) ;
232
233
233
234
it ( 'should write to console.error when Raven is not configured and Raven.debug is true' , function ( ) {
234
235
hasJSON = true ; // be explicit
235
- Raven . debug = true ;
236
236
globalServer = undefined ;
237
237
this . sinon . stub ( console , 'error' ) ;
238
238
isSetup ( ) ;
You can’t perform that action at this time.
0 commit comments