fix(structure): improve structure, prepare better CI integration
This commit is contained in:
24
test/test.apiclient.ts
Normal file
24
test/test.apiclient.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import { tap, expect } from '@push.rocks/tapbundle';
|
||||
|
||||
import * as cloudlyApiClient from '../ts_apiclient/index.js';
|
||||
|
||||
let testClient: cloudlyApiClient.CloudlyApiClient;
|
||||
|
||||
tap.test('should create a new cloudlyApiClient', async () => {
|
||||
testClient = new cloudlyApiClient.CloudlyApiClient({
|
||||
registerAs: 'api',
|
||||
cloudlyUrl: 'http://localhost:3000',
|
||||
});
|
||||
await testClient.start();
|
||||
expect(testClient).toBeTruthy();
|
||||
});
|
||||
|
||||
tap.test('should trigger a server action', async () => {
|
||||
|
||||
})
|
||||
|
||||
tap.test('should stop the apiclient', async () => {
|
||||
await testClient.stop();
|
||||
})
|
||||
|
||||
export default tap.start();
|
Reference in New Issue
Block a user