mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-10 16:21:46 +00:00
9 lines
269 B
JavaScript
9 lines
269 B
JavaScript
import { expect } from 'chai'
|
|
import * as request from './helpers/request.js'
|
|
|
|
describe('/status', function () {
|
|
it('should return 200', async function () {
|
|
const response = await request.get('/health_check')
|
|
expect(response.statusCode).to.equal(200)
|
|
})
|
|
})
|