Skip to content

Commit 284aac3

Browse files
fix(internal): skip tests that depend on mock server
1 parent 875216d commit 284aac3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/api-resources/scenarios/runs.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ describe('resource runs', () => {
9898
);
9999
});
100100

101-
test('downloadLogs: request options instead of params are passed correctly', async () => {
101+
// Mock server doesn't support application/zip responses
102+
test.skip('downloadLogs: request options instead of params are passed correctly', async () => {
102103
// ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
103104
await expect(
104105
client.scenarios.runs.downloadLogs('id', { path: '/_stainless_unknown_path' }),

0 commit comments

Comments
 (0)