aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/server/no-client.ts
blob: 3b95ce945bab0dd456df09f458cf911b3bafa662 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import 'mocha'
import * as request from 'supertest'
import {
  flushTests,
  killallServers,
  ServerInfo
} from '../../../../shared/utils'
import { runServer } from '../../../../shared/utils/server/servers'

describe('Start and stop server without web client routes', function () {
  let server: ServerInfo

  before(async function () {
    this.timeout(30000)

    await flushTests()

    server = await runServer(1, {}, ['--no-client'])
  })

  it('Should fail getting the client', function () {
    const req = request(server.url)
      .get('/')

    return req.expect(404)
  })

  after(async function () {
    killallServers([ server ])

    // Keep the logs if the test failed
    if (this['ok']) {
      await flushTests()
    }
  })
})