SmokeTest.js 402 B

1234567891011121314
  1. import Client from './helpers/Client.js'
  2. import ClsiApp from './helpers/ClsiApp.js'
  3. import { expect } from 'chai'
  4. describe('Smoke Test', function () {
  5. before(async function () {
  6. await ClsiApp.ensureRunning()
  7. })
  8. it('should compile the test document and return a response of "OK"', async function () {
  9. const response = await Client.smokeTest()
  10. expect(response).to.equal('OK')
  11. })
  12. })