@@ -13,7 +13,7 @@ import {
13
13
} from '../../src/_websocket' ;
14
14
import { CrossUploader } from '../../src/cross/_cross_uploader' ;
15
15
import { Live } from '../../src/live' ;
16
- import * as types from '../../src/types'
16
+ import * as types from '../../src/types' ;
17
17
18
18
class FakeWebSocketFactory implements WebSocketFactory {
19
19
create (
@@ -65,16 +65,19 @@ describe('live', () => {
65
65
const session = await live . connect ( {
66
66
model : 'models/gemini-2.0-flash-exp' ,
67
67
callbacks : {
68
- onmessage : function ( e : types . LiveServerMessage ) { void e } ,
68
+ onmessage : function ( e : types . LiveServerMessage ) {
69
+ void e ;
70
+ } ,
69
71
} ,
70
72
} ) ;
71
73
72
74
const websocketFactorySpyCall = websocketFactorySpy . calls . all ( ) [ 0 ] ;
73
75
expect ( websocketFactorySpyCall . args [ 0 ] ) . toBe (
74
76
'wss://generativelanguage.googleapis.com//ws/google.ai.generativelanguage.v1beta.GenerativeService.BidiGenerateContent?key=test-api-key' ,
75
77
) ;
78
+ // TODO(b/402513079): Don't hardcode the version here
76
79
expect ( JSON . stringify ( websocketFactorySpyCall . args [ 1 ] ) ) . toBe (
77
- '{"content-type":"application/json","user-agent":"google-genai-sdk/0.2 .0 undefined","x-goog-api-client":"google-genai-sdk/0.2 .0 undefined"}' ,
80
+ '{"content-type":"application/json","user-agent":"google-genai-sdk/0.3 .0 undefined","x-goog-api-client":"google-genai-sdk/0.3 .0 undefined"}' ,
78
81
) ;
79
82
// Check that the onopen callback is wrapped to call the provided callbacks
80
83
// and then resolve the onopen promise. The string is not fully checked to
@@ -88,9 +91,7 @@ describe('live', () => {
88
91
expect ( onopenString ) . toContain ( 'onopenResolve({});' ) ;
89
92
expect (
90
93
JSON . stringify ( websocketFactorySpyCall . args [ 2 ] . onclose . toString ( ) ) ,
91
- ) . toContain (
92
- 'void e;' ,
93
- ) ;
94
+ ) . toContain ( 'void e;' ) ;
94
95
expect ( session ) . toBeDefined ( ) ;
95
96
} ) ;
96
97
@@ -110,7 +111,9 @@ describe('live', () => {
110
111
onopen : ( ) => {
111
112
throw new Error ( 'custom onopen error' ) ;
112
113
} ,
113
- onmessage : function ( e : types . LiveServerMessage ) { void e } ,
114
+ onmessage : function ( e : types . LiveServerMessage ) {
115
+ void e ;
116
+ } ,
114
117
} ,
115
118
} ) ;
116
119
} catch ( e : unknown ) {
@@ -161,16 +164,19 @@ describe('live', () => {
161
164
const session = await live . connect ( {
162
165
model : 'models/gemini-2.0-flash-exp' ,
163
166
callbacks : {
164
- onmessage : function ( e : types . LiveServerMessage ) { void e } ,
165
- }
167
+ onmessage : function ( e : types . LiveServerMessage ) {
168
+ void e ;
169
+ } ,
170
+ } ,
166
171
} ) ;
167
172
168
173
const websocketFactorySpyCall = websocketFactorySpy . calls . all ( ) [ 0 ] ;
169
174
expect ( websocketFactorySpyCall . args [ 0 ] ) . toBe (
170
175
'wss://generativelanguage.googleapis.com//ws/google.ai.generativelanguage.v1beta.GenerativeService.BidiGenerateContent?key=test-api-key' ,
171
176
) ;
177
+ // TODO(b/402513079): Don't hardcode the version here
172
178
expect ( JSON . stringify ( websocketFactorySpyCall . args [ 1 ] ) ) . toBe (
173
- '{"content-type":"application/json","user-agent":"google-genai-sdk/0.2 .0 undefined","x-goog-api-client":"google-genai-sdk/0.2 .0 undefined"}' ,
179
+ '{"content-type":"application/json","user-agent":"google-genai-sdk/0.3 .0 undefined","x-goog-api-client":"google-genai-sdk/0.3 .0 undefined"}' ,
174
180
) ;
175
181
// Check that the onopen callback is wrapped to call the provided callbacks
176
182
// and then resolve the onopen promise. The string is not fully checked to
0 commit comments