mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-04 14:49:01 +02:00
cd7da983d1
[clsi] convert to ES modules GitOrigin-RevId: fb7fa52cc8f678ee31be352e62a5dff95e88008b
15 lines
402 B
JavaScript
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')
|
|
})
|
|
})
|