fix(deps): Update dependencies to latest versions
This commit is contained in:
@@ -9,15 +9,21 @@ tap.test('should create a new cloudlyApiClient', async () => {
|
||||
registerAs: 'api',
|
||||
cloudlyUrl: 'http://localhost:3000',
|
||||
});
|
||||
await testClient.start();
|
||||
// await testClient.start();
|
||||
expect(testClient).toBeTruthy();
|
||||
});
|
||||
|
||||
tap.test('should get an identity', async () => {
|
||||
const identity = await testClient.getIdentityByJumpCode('test');
|
||||
expect(identity).toBeTruthy();
|
||||
});
|
||||
|
||||
tap.test('should trigger a server action', async () => {
|
||||
|
||||
})
|
||||
|
||||
tap.test('should stop the apiclient', async () => {
|
||||
tap.test('should stop the apiclient', async (toolsArg) => {
|
||||
await toolsArg.delayFor(1000);
|
||||
await testClient.stop();
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user