describe('#getChannelsForClientId', () => {
        it('should return the channels that a clientId has subscribed to', async () => {
            const channels = await dataStore.getChannelsForClientId('zzz');
            assert.deepStrictEqual(channels, ['business']);
        });