Files
overleaf-cep/services/clsi/test/acceptance/js/SmokeTest.js
T
Andrew Rumble cd7da983d1 Merge pull request #30232 from overleaf/ar/convert-clsi-to-es-modules
[clsi] convert to ES modules

GitOrigin-RevId: fb7fa52cc8f678ee31be352e62a5dff95e88008b
2026-01-22 09:06:23 +00:00

15 lines
402 B
JavaScript

import Client from './helpers/Client.js'
import ClsiApp from './helpers/ClsiApp.js'
import { expect } from 'chai'
describe('Smoke Test', function () {
before(async function () {
await ClsiApp.ensureRunning()
})
it('should compile the test document and return a response of "OK"', async function () {
const response = await Client.smokeTest()
expect(response).to.equal('OK')
})
})