-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbrowser.test.ts
More file actions
27 lines (23 loc) · 1.08 KB
/
browser.test.ts
File metadata and controls
27 lines (23 loc) · 1.08 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
// 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 browser', () => {
// skipped: tests are disabled for the time being
test.skip('createSession: only required params', async () => {
const responsePromise = client.browser.createSession({ invocationId: 'invocationId' });
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('createSession: required and optional params', async () => {
const response = await client.browser.createSession({ invocationId: 'invocationId' });
});
});