File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -199,12 +199,12 @@ describe('LiveWatchTreeDataProvider', () => {
199199 await ( liveWatchTreeDataProvider as any ) . handleCopyCommand ( node ) ;
200200 expect ( vscode . env . clipboard . writeText ) . toHaveBeenCalledWith ( 'node-to-copy' ) ;
201201 } ) ;
202-
202+
203203 it ( 'copies evaluateName of children to clipboard when present' , async ( ) => {
204- const child = makeNode ( 'childName' , {
205- result : '42' ,
206- variablesReference : 0 ,
207- evaluateName : 'parent.childName'
204+ const child = makeNode ( 'childName' , {
205+ result : '42' ,
206+ variablesReference : 0 ,
207+ evaluateName : 'parent.childName'
208208 } , 2 ) ;
209209 ( liveWatchTreeDataProvider as any ) . roots = [ child ] ;
210210 await ( liveWatchTreeDataProvider as any ) . handleCopyCommand ( child ) ;
You can’t perform that action at this time.
0 commit comments