Skip to content

Commit dcb6628

Browse files
committed
test: unskip transcription tests (#667)
1 parent 291bcab commit dcb6628

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/api-resources/audio/transcriptions.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ const openai = new OpenAI({
99
});
1010

1111
describe('resource transcriptions', () => {
12-
// test is currently broken
13-
test.skip('create: only required params', async () => {
12+
test('create: only required params', async () => {
1413
const responsePromise = openai.audio.transcriptions.create({
1514
file: await toFile(Buffer.from('# my file contents'), 'README.md'),
1615
model: 'whisper-1',
@@ -24,8 +23,7 @@ describe('resource transcriptions', () => {
2423
expect(dataAndResponse.response).toBe(rawResponse);
2524
});
2625

27-
// test is currently broken
28-
test.skip('create: required and optional params', async () => {
26+
test('create: required and optional params', async () => {
2927
const response = await openai.audio.transcriptions.create({
3028
file: await toFile(Buffer.from('# my file contents'), 'README.md'),
3129
model: 'whisper-1',

0 commit comments

Comments
 (0)