Files
overleaf-cep/services/clsi/test/acceptance/js/SmokeTest.js
Brian Gough 4ca1407ab9 Merge pull request #29638 from overleaf/bg-add-shell-escape-tests-to-clsi
add shell escape tests to clsi

GitOrigin-RevId: 6cd3ab24fa76f74dccfec43bf6a3d06c0fe9ec6a
2025-11-13 09:06:18 +00:00

15 lines
411 B
JavaScript

const Client = require('./helpers/Client')
const ClsiApp = require('./helpers/ClsiApp')
const { expect } = require('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')
})
})