File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -501,12 +501,6 @@ describe('Claude Skills', () => {
501501 } ) ;
502502
503503 it ( 'should get available skills' , ( ) => {
504- const prevKey = process . env [ 'CHROMADB_API_KEY' ] ;
505- const prevTenant = process . env [ 'CHROMADB_TENANT' ] ;
506- // Ensure repo skill initializes for this test
507- process . env [ 'CHROMADB_API_KEY' ] = 'test-key' ;
508- process . env [ 'CHROMADB_TENANT' ] = 'test-tenant' ;
509-
510504 const manager = new ClaudeSkillsManager ( context ) ;
511505 const skills = manager . getAvailableSkills ( ) ;
512506
@@ -518,14 +512,7 @@ describe('Claude Skills', () => {
518512 'api' ,
519513 'spec' ,
520514 'agent' ,
521- 'repo' ,
522515 ] ) ;
523-
524- // Restore env
525- if ( prevKey === undefined ) delete process . env [ 'CHROMADB_API_KEY' ] ;
526- else process . env [ 'CHROMADB_API_KEY' ] = prevKey ;
527- if ( prevTenant === undefined ) delete process . env [ 'CHROMADB_TENANT' ] ;
528- else process . env [ 'CHROMADB_TENANT' ] = prevTenant ;
529516 } ) ;
530517
531518 it ( 'should get skill help' , ( ) => {
You can’t perform that action at this time.
0 commit comments