Fix getSortedChannels test
This commit is contained in:
parent
fad2e030d4
commit
4eda7ef396
@ -330,18 +330,35 @@ describe('getSortedChannels', () => {
|
|||||||
'bob.com': {},
|
'bob.com': {},
|
||||||
'127.0.0.1': {
|
'127.0.0.1': {
|
||||||
'#chan1': {
|
'#chan1': {
|
||||||
|
name: '#chan1',
|
||||||
users: [],
|
users: [],
|
||||||
topic: 'cake'
|
topic: 'cake'
|
||||||
},
|
},
|
||||||
'#pie': {},
|
'#pie': {
|
||||||
'##apples': {}
|
name: '#pie'
|
||||||
|
},
|
||||||
|
'##apples': {
|
||||||
|
name: '##apples'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
).toEqual([
|
).toEqual([
|
||||||
{
|
{
|
||||||
address: '127.0.0.1',
|
address: '127.0.0.1',
|
||||||
channels: ['##apples', '#chan1', '#pie']
|
channels: [
|
||||||
|
{
|
||||||
|
name: '##apples'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '#chan1',
|
||||||
|
users: [],
|
||||||
|
topic: 'cake'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '#pie'
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
address: 'bob.com',
|
address: 'bob.com',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user