diff --git a/server/tests/client.ts b/server/tests/client.ts index f41129895..dd95e538a 100644 --- a/server/tests/client.ts +++ b/server/tests/client.ts @@ -522,23 +522,6 @@ describe('Test a client controllers', function () { expect(res.text).to.contain('') } }) - - 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('') - } - - { - const { text } = await makeHTMLRequest(servers[0].url, path + handle) - expect(text).to.not.contain('') - } - } - }) }) describe('Embed HTML', function () {