@@ -370,8 +370,8 @@ describe('session', () => {
370370
371371 const session = ai . createSession ( ) ;
372372 const chat = session . chat ( agent ) ;
373- const respose = await chat . send ( 'hi' ) ;
374- assert . deepStrictEqual ( respose . messages , [
373+ const response = await chat . send ( 'hi' ) ;
374+ assert . deepStrictEqual ( response . messages , [
375375 {
376376 role : 'system' ,
377377 content : [ { text : 'hello from template' } ] ,
@@ -405,8 +405,8 @@ describe('session', () => {
405405 name : 'Genkit' ,
406406 } ,
407407 } ) ;
408- const respose = await chat . send ( 'hi' ) ;
409- assert . deepStrictEqual ( respose . messages , [
408+ const response = await chat . send ( 'hi' ) ;
409+ assert . deepStrictEqual ( response . messages , [
410410 {
411411 role : 'system' ,
412412 content : [ { text : 'hello Genkit from template' } ] ,
@@ -481,8 +481,8 @@ describe('session', () => {
481481 } ,
482482 } ) ;
483483 const chat = session . chat ( agent ) ;
484- const respose = await chat . send ( 'hi' ) ;
485- assert . deepStrictEqual ( respose . messages , [
484+ const response = await chat . send ( 'hi' ) ;
485+ assert . deepStrictEqual ( response . messages , [
486486 {
487487 role : 'system' ,
488488 content : [ { text : 'foo=bar' } ] ,
0 commit comments