| 123456789101112131415161718192021222324252627282930313233343536 |
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
- import Opencode from '@opencode-ai/sdk';
- const client = new Opencode({ baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010' });
- describe('resource file', () => {
- // skipped: tests are disabled for the time being
- test.skip('read: only required params', async () => {
- const responsePromise = client.file.read({ path: 'path' });
- const rawResponse = await responsePromise.asResponse();
- expect(rawResponse).toBeInstanceOf(Response);
- const response = await responsePromise;
- expect(response).not.toBeInstanceOf(Response);
- const dataAndResponse = await responsePromise.withResponse();
- expect(dataAndResponse.data).toBe(response);
- expect(dataAndResponse.response).toBe(rawResponse);
- });
- // skipped: tests are disabled for the time being
- test.skip('read: required and optional params', async () => {
- const response = await client.file.read({ path: 'path' });
- });
- // skipped: tests are disabled for the time being
- test.skip('status', async () => {
- const responsePromise = client.file.status();
- const rawResponse = await responsePromise.asResponse();
- expect(rawResponse).toBeInstanceOf(Response);
- const response = await responsePromise;
- expect(response).not.toBeInstanceOf(Response);
- const dataAndResponse = await responsePromise.withResponse();
- expect(dataAndResponse.data).toBe(response);
- expect(dataAndResponse.response).toBe(rawResponse);
- });
- });
|