@@ -7,7 +7,6 @@ import { useConnectionStore } from '../stores/connectionStore'
77import { useConversationStore } from '../stores/conversationStore'
88import { useThreadStore } from '../stores/threadStore'
99import { useUIStore } from '../stores/uiStore'
10- import { PLAN_IMPLEMENTATION_MESSAGE } from '../utils/planImplementation'
1110import { installDesktopApiMock } from './desktopApiMock'
1211
1312const appServerSendRequest = vi . fn ( )
@@ -148,7 +147,7 @@ describe('PlanApprovalComposer', () => {
148147 'turn/start' ,
149148 expect . objectContaining ( {
150149 threadId : 'thread-1' ,
151- input : [ { type : 'text' , text : PLAN_IMPLEMENTATION_MESSAGE } ]
150+ input : [ { type : 'text' , text : 'Implement the plan.' } ]
152151 } )
153152 )
154153 } )
@@ -157,7 +156,7 @@ describe('PlanApprovalComposer', () => {
157156 expect ( useConversationStore . getState ( ) . turns ) . toEqual ( [
158157 expect . objectContaining ( {
159158 id : 'turn-server-1' ,
160- items : [ expect . objectContaining ( { type : 'userMessage' , text : PLAN_IMPLEMENTATION_MESSAGE } ) ]
159+ items : [ expect . objectContaining ( { type : 'userMessage' , text : 'Implement the plan.' } ) ]
161160 } )
162161 ] )
163162 } )
@@ -180,7 +179,7 @@ describe('PlanApprovalComposer', () => {
180179 'turn/start' ,
181180 expect . objectContaining ( {
182181 threadId : 'thread-1' ,
183- input : [ { type : 'text' , text : PLAN_IMPLEMENTATION_MESSAGE } ]
182+ input : [ { type : 'text' , text : 'Implement the plan.' } ]
184183 } )
185184 )
186185 } )
0 commit comments