File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
tests/api-resources/audio Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,7 @@ const openai = new OpenAI({
9
9
} ) ;
10
10
11
11
describe ( 'resource transcriptions' , ( ) => {
12
- // test is currently broken
13
- test . skip ( 'create: only required params' , async ( ) => {
12
+ test ( 'create: only required params' , async ( ) => {
14
13
const responsePromise = openai . audio . transcriptions . create ( {
15
14
file : await toFile ( Buffer . from ( '# my file contents' ) , 'README.md' ) ,
16
15
model : 'whisper-1' ,
@@ -24,8 +23,7 @@ describe('resource transcriptions', () => {
24
23
expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
25
24
} ) ;
26
25
27
- // test is currently broken
28
- test . skip ( 'create: required and optional params' , async ( ) => {
26
+ test ( 'create: required and optional params' , async ( ) => {
29
27
const response = await openai . audio . transcriptions . create ( {
30
28
file : await toFile ( Buffer . from ( '# my file contents' ) , 'README.md' ) ,
31
29
model : 'whisper-1' ,
You can’t perform that action at this time.
0 commit comments