File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -160,8 +160,8 @@ describe('WhisperTranscriber', () => {
160160
161161 segments . push ( segment ) ;
162162
163- // Limit to first 10 segments for testing
164- if ( segments . length >= 10 ) {
163+ // Limit to first 3 segments for testing
164+ if ( segments . length >= 3 ) {
165165 break ;
166166 }
167167 }
@@ -208,8 +208,8 @@ describe('WhisperTranscriber', () => {
208208
209209 segments . push ( segment ) ;
210210
211- // Limit to first 10 segments for testing
212- if ( segments . length >= 10 ) {
211+ // Limit to first 3 segments for testing
212+ if ( segments . length >= 3 ) {
213213 break ;
214214 }
215215 }
@@ -264,8 +264,8 @@ describe('WhisperTranscriber', () => {
264264 for await ( const segment of transcriber . transcribe ( decoderGenerator ) ) {
265265 segments . push ( segment ) ;
266266
267- // Limit to first 10 segments for testing
268- if ( segments . length >= 10 ) {
267+ // Limit to first 3 segments for testing
268+ if ( segments . length >= 3 ) {
269269 break ;
270270 }
271271 }
You can’t perform that action at this time.
0 commit comments