Prefer displaying channel in rss feeds

This commit is contained in:
Chocobozzz
2022-12-20 09:25:18 +01:00
parent 868314e8bf
commit ec3ce76f19
2 changed files with 6 additions and 6 deletions

View File

@@ -189,7 +189,7 @@ describe('Test syndication feeds', () => {
const jsonObj = JSON.parse(json)
expect(jsonObj.items.length).to.be.equal(1)
expect(jsonObj.items[0].title).to.equal('my super name for server 1')
expect(jsonObj.items[0].author.name).to.equal('root')
expect(jsonObj.items[0].author.name).to.equal('Main root channel')
}
{
@@ -197,7 +197,7 @@ describe('Test syndication feeds', () => {
const jsonObj = JSON.parse(json)
expect(jsonObj.items.length).to.be.equal(1)
expect(jsonObj.items[0].title).to.equal('user video')
expect(jsonObj.items[0].author.name).to.equal('john')
expect(jsonObj.items[0].author.name).to.equal('Main john channel')
}
for (const server of servers) {
@@ -223,7 +223,7 @@ describe('Test syndication feeds', () => {
const jsonObj = JSON.parse(json)
expect(jsonObj.items.length).to.be.equal(1)
expect(jsonObj.items[0].title).to.equal('my super name for server 1')
expect(jsonObj.items[0].author.name).to.equal('root')
expect(jsonObj.items[0].author.name).to.equal('Main root channel')
}
{
@@ -231,7 +231,7 @@ describe('Test syndication feeds', () => {
const jsonObj = JSON.parse(json)
expect(jsonObj.items.length).to.be.equal(1)
expect(jsonObj.items[0].title).to.equal('user video')
expect(jsonObj.items[0].author.name).to.equal('john')
expect(jsonObj.items[0].author.name).to.equal('Main john channel')
}
for (const server of servers) {