Skip to content

Commit 010a97c

Browse files
chore(internal): update test skipping reason
1 parent a8e5ba4 commit 010a97c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/api-resources/code-interpreter/code-interpreter.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const client = new Together({
88
});
99

1010
describe('resource codeInterpreter', () => {
11-
// skipped: currently no good way to test endpoints defining callbacks, Prism mock server will fail trying to reach the provided callback url
11+
// Prism doesn't support callbacks yet
1212
test.skip('execute: only required params', async () => {
1313
const responsePromise = client.codeInterpreter.execute({
1414
code: "print('Hello, world!')",
@@ -23,7 +23,7 @@ describe('resource codeInterpreter', () => {
2323
expect(dataAndResponse.response).toBe(rawResponse);
2424
});
2525

26-
// skipped: currently no good way to test endpoints defining callbacks, Prism mock server will fail trying to reach the provided callback url
26+
// Prism doesn't support callbacks yet
2727
test.skip('execute: required and optional params', async () => {
2828
const response = await client.codeInterpreter.execute({
2929
code: "print('Hello, world!')",

tests/api-resources/code-interpreter/sessions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const client = new Together({
88
});
99

1010
describe('resource sessions', () => {
11-
// skipped: currently no good way to test endpoints defining callbacks, Prism mock server will fail trying to reach the provided callback url
11+
// Prism doesn't support callbacks yet
1212
test.skip('list', async () => {
1313
const responsePromise = client.codeInterpreter.sessions.list();
1414
const rawResponse = await responsePromise.asResponse();

0 commit comments

Comments
 (0)