]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/server/no-client.ts
Use test wrapper exit function
[github/Chocobozzz/PeerTube.git] / server / tests / api / server / no-client.ts
1 import 'mocha'
2 import * as request from 'supertest'
3 import { ServerInfo } from '../../../../shared/extra-utils'
4 import { cleanupTests, flushAndRunServer } from '../../../../shared/extra-utils/server/servers'
5
6 describe('Start and stop server without web client routes', function () {
7 let server: ServerInfo
8
9 before(async function () {
10 this.timeout(30000)
11
12 server = await flushAndRunServer(1, {}, ['--no-client'])
13 })
14
15 it('Should fail getting the client', function () {
16 const req = request(server.url)
17 .get('/')
18
19 return req.expect(404)
20 })
21
22 after(async function () {
23 await cleanupTests([ server ])
24 })
25 })