File tree Expand file tree Collapse file tree 1 file changed +3
-13
lines changed
Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -73,10 +73,7 @@ suite('Smoke Test Suite', function() {
7373 // 1. Verify extension is installed and active
7474 await verifyExtension ( ) ;
7575
76- // 2. Verify Output channel exists
77- await verifyOutputChannel ( ) ;
78-
79- // 3. Execute Okteto: Up
76+ // 2. Execute Okteto: Up
8077 await executeOktetoUp ( ) ;
8178
8279 // 4. Wait for ready state
@@ -116,16 +113,9 @@ suite('Smoke Test Suite', function() {
116113
117114 assert . ok ( ext . isActive , 'Extension should be active' ) ;
118115 console . log ( '[SMOKE TEST] ✓ Extension is active' ) ;
119- }
120-
121- async function verifyOutputChannel ( ) : Promise < void > {
122- console . log ( '[SMOKE TEST] Verifying Output channel...' ) ;
123-
124- // Get all output channels - Okteto channel should exist
125- // We can't directly access output channels, but we can verify the command works
126- await vscode . commands . executeCommand ( 'workbench.action.output.show' ) ;
127116
128- console . log ( '[SMOKE TEST] ✓ Output panel accessible' ) ;
117+ // Note: Output channel verification skipped - the logger is created during activation
118+ // and we can't reliably access workbench commands in test environment
129119 }
130120
131121 async function executeOktetoUp ( ) : Promise < void > {
You can’t perform that action at this time.
0 commit comments