X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fmisc-endpoints.ts;h=3d02243232c9f71e85d7b6f3be807a9e8f0631bb;hb=797d05bdd99b63104522051d0f61f1e0f003e780;hp=ab2dd3a0ff5efd1440659e7c837754a07f74b7b0;hpb=e39cfd1d9136a3378aa9f628c7bbd5d8bf556816;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/misc-endpoints.ts b/server/tests/misc-endpoints.ts index ab2dd3a0f..3d0224323 100644 --- a/server/tests/misc-endpoints.ts +++ b/server/tests/misc-endpoints.ts @@ -1,4 +1,4 @@ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ import 'mocha' import * as chai from 'chai' @@ -122,7 +122,7 @@ describe('Test misc endpoints', function () { }) expect(res.text).to.contain('xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"') - expect(res.text).to.contain('http://localhost:9001/about/instance') + expect(res.text).to.contain('http://localhost:' + server.port + '/about/instance') }) it('Should get the empty cached sitemap', async function () { @@ -133,7 +133,7 @@ describe('Test misc endpoints', function () { }) expect(res.text).to.contain('xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"') - expect(res.text).to.contain('http://localhost:9001/about/instance') + expect(res.text).to.contain('http://localhost:' + server.port + '/about/instance') }) it('Should add videos, channel and accounts and get sitemap', async function () { @@ -156,17 +156,17 @@ describe('Test misc endpoints', function () { }) expect(res.text).to.contain('xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"') - expect(res.text).to.contain('http://localhost:9001/about/instance') + expect(res.text).to.contain('http://localhost:' + server.port + '/about/instance') expect(res.text).to.contain('video 1') expect(res.text).to.contain('video 2') expect(res.text).to.not.contain('video 3') - expect(res.text).to.contain('http://localhost:9001/video-channels/channel1') - expect(res.text).to.contain('http://localhost:9001/video-channels/channel2') + expect(res.text).to.contain('http://localhost:' + server.port + '/video-channels/channel1') + expect(res.text).to.contain('http://localhost:' + server.port + '/video-channels/channel2') - expect(res.text).to.contain('http://localhost:9001/accounts/user1') - expect(res.text).to.contain('http://localhost:9001/accounts/user2') + expect(res.text).to.contain('http://localhost:' + server.port + '/accounts/user1') + expect(res.text).to.contain('http://localhost:' + server.port + '/accounts/user2') }) })