@@ -62,9 +62,9 @@ describe('editor agent', () => {
6262 expect ( gpt5Editor . model ) . toBe ( 'openai/gpt-5.1' )
6363 } )
6464
65- test ( 'creates glm editor' , ( ) => {
66- const glmEditor = createCodeEditor ( { model : 'glm ' } )
67- expect ( glmEditor . model ) . toBe ( 'z-ai/glm-5.1 ' )
65+ test ( 'creates kimi editor' , ( ) => {
66+ const kimiEditor = createCodeEditor ( { model : 'kimi ' } )
67+ expect ( kimiEditor . model ) . toBe ( 'moonshotai/kimi-k2.6 ' )
6868 } )
6969
7070 test ( 'creates minimax editor' , ( ) => {
@@ -78,10 +78,10 @@ describe('editor agent', () => {
7878 expect ( gpt5Editor . instructionsPrompt ) . not . toContain ( '</think>' )
7979 } )
8080
81- test ( 'glm editor does not include think tags in instructions' , ( ) => {
82- const glmEditor = createCodeEditor ( { model : 'glm ' } )
83- expect ( glmEditor . instructionsPrompt ) . not . toContain ( '<think>' )
84- expect ( glmEditor . instructionsPrompt ) . not . toContain ( '</think>' )
81+ test ( 'kimi editor does not include think tags in instructions' , ( ) => {
82+ const kimiEditor = createCodeEditor ( { model : 'kimi ' } )
83+ expect ( kimiEditor . instructionsPrompt ) . not . toContain ( '<think>' )
84+ expect ( kimiEditor . instructionsPrompt ) . not . toContain ( '</think>' )
8585 } )
8686
8787 test ( 'minimax editor does not include think tags in instructions' , ( ) => {
@@ -99,17 +99,17 @@ describe('editor agent', () => {
9999 test ( 'all variants have same base properties' , ( ) => {
100100 const opusEditor = createCodeEditor ( { model : 'opus' } )
101101 const gpt5Editor = createCodeEditor ( { model : 'gpt-5' } )
102- const glmEditor = createCodeEditor ( { model : 'glm ' } )
102+ const kimiEditor = createCodeEditor ( { model : 'kimi ' } )
103103
104104 // All should have same basic structure
105105 expect ( opusEditor . displayName ) . toBe ( gpt5Editor . displayName )
106- expect ( gpt5Editor . displayName ) . toBe ( glmEditor . displayName )
106+ expect ( gpt5Editor . displayName ) . toBe ( kimiEditor . displayName )
107107
108108 expect ( opusEditor . outputMode ) . toBe ( gpt5Editor . outputMode )
109- expect ( gpt5Editor . outputMode ) . toBe ( glmEditor . outputMode )
109+ expect ( gpt5Editor . outputMode ) . toBe ( kimiEditor . outputMode )
110110
111111 expect ( opusEditor . toolNames ) . toEqual ( gpt5Editor . toolNames )
112- expect ( gpt5Editor . toolNames ) . toEqual ( glmEditor . toolNames )
112+ expect ( gpt5Editor . toolNames ) . toEqual ( kimiEditor . toolNames )
113113 } )
114114 } )
115115
0 commit comments