navy
Version:
Quick and powerful development environments using Docker and Docker Compose
16 lines (14 loc) • 379 B
JavaScript
;
var _chai = require("chai");
var _service = require("../service");
/* eslint-env mocha */
describe('service', function () {
describe('Status', function () {
it('should expose RUNNING and EXITED string constants', function () {
(0, _chai.expect)(_service.Status).to.eql({
RUNNING: 'running',
EXITED: 'exited'
});
});
});
});