fix(core): update

This commit is contained in:
2020-09-29 19:39:13 +00:00
parent 78ee8f2592
commit 71bccf54f1
14 changed files with 102 additions and 69 deletions

View File

@ -55,7 +55,7 @@ tap.test('should get a observable correctly', async () => {
});
tap.test('should send a message correctly', async () => {
await testClientUniverse.getChannel(testChannelData.channelName).sendMessage({
await testClientUniverse.getChannel(testChannelData.channelName).postMessage({
messageText: 'hello',
});
});
@ -84,7 +84,7 @@ tap.test('should receive a message correctly', async (tools) => {
done.resolve();
}
});
await testChannel.sendMessage({
await testChannel.postMessage({
messageText: 'hellothere',
});
await done.promise;