@@ -1704,13 +1704,13 @@ describe('Test lib.js:', function() {
17041704 beforeEach ( function ( ) {
17051705 stashConsole = window . console ;
17061706 stashLogLevel = config . logging ;
1707- stashOnGraphLogLevel = config . onGraphLogging ;
1707+ stashOnGraphLogLevel = config . notifyOnLogging ;
17081708 } ) ;
17091709
17101710 afterEach ( function ( ) {
17111711 window . console = stashConsole ;
17121712 config . logging = stashLogLevel ;
1713- config . onGraphLogging = stashOnGraphLogLevel ;
1713+ config . notifyOnLogging = stashOnGraphLogLevel ;
17141714 } ) ;
17151715
17161716 it ( 'emits one console message if apply is available' , function ( ) {
@@ -1811,7 +1811,7 @@ describe('Test lib.js:', function() {
18111811 ] ) ;
18121812 } ) ;
18131813
1814- describe ( 'should log message in notifier div in accordance onGraphLogging config option' , function ( ) {
1814+ describe ( 'should log message in notifier div in accordance notifyOnLogging config option' , function ( ) {
18151815 var query = '.notifier-note' ;
18161816
18171817 beforeEach ( function ( done ) {
@@ -1840,17 +1840,17 @@ describe('Test lib.js:', function() {
18401840 }
18411841
18421842 it ( 'with level 2' , function ( ) {
1843- config . onGraphLogging = 2 ;
1843+ config . notifyOnLogging = 2 ;
18441844 _run ( [ 'log' , 'warn' , 'error!' ] ) ;
18451845 } ) ;
18461846
18471847 it ( 'with level 1' , function ( ) {
1848- config . onGraphLogging = 1 ;
1848+ config . notifyOnLogging = 1 ;
18491849 _run ( [ 'warn' , 'error!' ] ) ;
18501850 } ) ;
18511851
18521852 it ( 'with level 0' , function ( ) {
1853- config . onGraphLogging = 0 ;
1853+ config . notifyOnLogging = 0 ;
18541854 _run ( [ ] ) ;
18551855 } ) ;
18561856 } ) ;
0 commit comments