• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

cameri / nostream / 27743281618

18 Jun 2026 07:17AM UTC coverage: 67.377% (+0.4%) from 66.995%
27743281618

Pull #641

github

web-flow
Merge 01d343495 into faf55f1de
Pull Request #641: feat: add admin backend foundation (login, session, health)

1979 of 3297 branches covered (60.02%)

Branch coverage included in aggregate %.

185 of 221 new or added lines in 17 files covered. (83.71%)

4535 of 6371 relevant lines covered (71.18%)

18.91 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/src/controllers/admin/get-health-controller.ts
1
import { Request, Response } from 'express'
2

3
import { IController } from '../../@types/controllers'
4
import { collectAdminHealthSnapshot } from '../../utils/admin-health'
2✔
5

6
export class GetAdminHealthController implements IController {
2✔
7
  public async handleRequest(_request: Request, response: Response): Promise<void> {
NEW
8
    const health = await collectAdminHealthSnapshot()
×
NEW
9
    response.status(200).setHeader('content-type', 'application/json').send(health)
×
10
  }
11
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc