1
0
Fork 0

Remove duplicated test

This commit is contained in:
Chocobozzz 2022-04-08 16:30:22 +02:00
parent c6d20c84a7
commit 7ca0363f75
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 0 additions and 17 deletions

View File

@ -522,23 +522,6 @@ describe('Test a client controllers', function () {
expect(res.text).to.contain('<meta name="robots" content="noindex" />')
}
})
it('Should add noindex meta tag for remote accounts', async function () {
const handle = 'root_channel@' + servers[0].host
const paths = [ '/video-channels/', '/c/', '/@' ]
for (const path of paths) {
{
const { text } = await makeHTMLRequest(servers[1].url, path + handle)
expect(text).to.contain('<meta name="robots" content="noindex" />')
}
{
const { text } = await makeHTMLRequest(servers[0].url, path + handle)
expect(text).to.not.contain('<meta name="robots" content="noindex" />')
}
}
})
})
describe('Embed HTML', function () {