-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapps.test.ts
More file actions
38 lines (34 loc) · 1.26 KB
/
apps.test.ts
File metadata and controls
38 lines (34 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import Kernel from '@onkernel/sdk';
const client = new Kernel({
apiKey: 'My API Key',
baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010',
});
describe('resource apps', () => {
// Prism tests are disabled
test.skip('list', async () => {
const responsePromise = client.apps.list();
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);
});
// Prism tests are disabled
test.skip('list: request options and params are passed correctly', async () => {
// ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
await expect(
client.apps.list(
{
app_name: 'app_name',
limit: 1,
offset: 0,
version: 'version',
},
{ path: '/_stainless_unknown_path' },
),
).rejects.toThrow(Kernel.NotFoundError);
});
});