fix(core): update

This commit is contained in:
Philipp Kunz 2019-09-10 00:39:18 +02:00
parent d1b4672eff
commit 7e1c405cb1
4 changed files with 9 additions and 3 deletions

View File

@ -74,7 +74,7 @@ tap.test('a second client should be able to subscibe', async () => {
tap.test('should receive a message correctly', async () => {});
tap.test('should disconnect the client correctly', async () => {
testClientUniverse.stop();
await testClientUniverse.stop();
});
tap.test('should end the server correctly', async tools => {

View File

@ -76,8 +76,8 @@ export class ClientUniverse {
await this.checkConnection();
}
public stop() {
this.smartsocketClient.disconnect();
public async stop() {
await this.smartsocketClient.disconnect();
}
/**

View File

@ -0,0 +1,3 @@
import * as plugins from './smartuniverse.plugins';
export class ReactionRequest {}

View File

@ -0,0 +1,3 @@
import * as plugins from './smartuniverse.plugins';
export class ReactionResponse {}