@@ -270,8 +270,9 @@ suite('Debugging - Config Provider', () => {
270270
271271 expect ( debugConfig ) . to . have . property ( 'console' ,  'integratedTerminal' ) ; 
272272 expect ( debugConfig ) . to . have . property ( 'stopOnEntry' ,  false ) ; 
273+  expect ( debugConfig ) . to . have . property ( 'showReturnValue' ,  false ) ; 
273274 expect ( debugConfig ) . to . have . property ( 'debugOptions' ) ; 
274-  expect ( ( debugConfig  as  any ) . debugOptions ) . to . be . deep . equal ( [ ' RedirectOutput' ] ) ; 
275+  expect ( ( debugConfig  as  any ) . debugOptions ) . to . be . deep . equal ( [ DebugOptions . RedirectOutput ] ) ; 
275276 } ) ; 
276277 test ( 'Test defaults of python debugger' ,  async  ( )  =>  { 
277278 if  ( 'python'  ===  DebuggerTypeName )  { 
@@ -286,6 +287,7 @@ suite('Debugging - Config Provider', () => {
286287 const  debugConfig  =  await  debugProvider . resolveDebugConfiguration ! ( workspaceFolder ,  { }  as  DebugConfiguration ) ; 
287288
288289 expect ( debugConfig ) . to . have . property ( 'stopOnEntry' ,  false ) ; 
290+  expect ( debugConfig ) . to . have . property ( 'showReturnValue' ,  false ) ; 
289291 expect ( debugConfig ) . to . have . property ( 'debugOptions' ) ; 
290292 expect ( ( debugConfig  as  any ) . debugOptions ) . to . be . deep . equal ( [ DebugOptions . RedirectOutput ] ) ; 
291293 } ) ; 
@@ -300,6 +302,7 @@ suite('Debugging - Config Provider', () => {
300302
301303 expect ( debugConfig ) . to . have . property ( 'console' ,  'integratedTerminal' ) ; 
302304 expect ( debugConfig ) . to . have . property ( 'stopOnEntry' ,  false ) ; 
305+  expect ( debugConfig ) . to . have . property ( 'showReturnValue' ,  false ) ; 
303306 expect ( debugConfig ) . to . have . property ( 'debugOptions' ) ; 
304307 expect ( ( debugConfig  as  any ) . debugOptions ) . to . be . deep . equal ( [ ] ) ; 
305308 } ) ; 
0 commit comments