From 7ca0363f758ef68c270e012764b567d89ee1c4cf Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 8 Apr 2022 16:30:22 +0200 Subject: [PATCH] Remove duplicated test --- server/tests/client.ts | 17 ----------------- 1 file changed, 17 deletions(-) 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 () {