File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 11/**
2- * Copyright 2025 Arm Limited
2+ * Copyright 2025 Arm Limited
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
1717/* eslint-disable @typescript-eslint/no-explicit-any */
1818import * as vscode from 'vscode' ;
1919import { debugSessionFactory , extensionContextFactory } from '../../__test__/vscode.factory' ;
20- // import { LiveWatchTreeDataProvider } from './live-watch';
20+ import { LiveWatchTreeDataProvider } from './live-watch' ;
2121import { GDBTargetDebugSession , GDBTargetDebugTracker } from '../../debug-session' ;
2222import { gdbTargetConfiguration } from '../../debug-configuration/debug-configuration.factory' ;
2323import { GDBTargetConfiguration } from '../../debug-configuration' ;
2424
2525// Inline mock for registerTreeDataProvider specific to these tests
2626const registerTreeDataProviderMock = jest . fn ( ( ) => ( { dispose : jest . fn ( ) } ) ) ;
2727
28- import { LiveWatchTreeDataProvider } from './live-watch' ;
29-
30-
3128describe ( 'LiveWatchTreeDataProvider' , ( ) => {
3229 let liveWatchTreeDataProvider : LiveWatchTreeDataProvider ;
3330 let tracker : GDBTargetDebugTracker ;
You can’t perform that action at this time.
0 commit comments