fix(core): update

This commit is contained in:
2019-04-23 00:28:57 +02:00
parent a8a91b4db2
commit b1017121ea
10 changed files with 112 additions and 180 deletions

View File

@ -32,17 +32,11 @@ tap.test('create smartuniverse client', async () => {
});
tap.test('should add a channel to the universe', async () => {
await testUniverse.addChannel(
testChannelData.channelName,
testChannelData.channelPass
);
await testUniverse.addChannel(testChannelData.channelName, testChannelData.channelPass);
});
tap.test('should add the same channel to the client universe in the same way', async () => {
await testClientUniverse.addChannel(
testChannelData.channelName,
testChannelData.channelPass
);
await testClientUniverse.addChannel(testChannelData.channelName, testChannelData.channelPass);
});
tap.test('should get a observable correctly', async () => {