overleaf/services/spelling/test/acceptance/js/HealthCheckTest.js
Eric Mc Sween f6c1e2738d Merge pull request #10938 from overleaf/em-esm-spelling
Migrate spelling to ES modules

GitOrigin-RevId: 4a200c8d1c28be44027cc8a3097e42575ab6593f
2022-12-21 09:03:55 +00:00

9 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)
})
})