mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 10:10:08 +02:00
10 lines
275 B
JavaScript
10 lines
275 B
JavaScript
import { expect } from 'chai'
|
|
import * as request from './helpers/request.js'
|
|
|
|
describe('/health_check', function () {
|
|
it('should return 200', async function () {
|
|
const response = await request.get('/health_check')
|
|
expect(response.statusCode).to.equal(200)
|
|
})
|
|
})
|