SmokeTest.js 411 B

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