navy
Version:
Quick and powerful development environments using Docker and Docker Compose
25 lines (23 loc) • 1.79 kB
JavaScript
;
var _chai = require("chai");
var navyModule = _interopRequireWildcard(require("../index"));
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
/* eslint-env mocha */
describe('navy package entry point', function () {
it('should re-export the Navy class and navy lookup helpers', function () {
(0, _chai.expect)(navyModule).to.have.property('Navy').that.is.a('function');
(0, _chai.expect)(navyModule).to.have.property('getNavy').that.is.a('function');
(0, _chai.expect)(navyModule).to.have.property('getLaunchedNavies').that.is.a('function');
(0, _chai.expect)(navyModule).to.have.property('getLaunchedNavyNames').that.is.a('function');
});
it('should expose the Service module under Service', function () {
(0, _chai.expect)(navyModule).to.have.property('Service').that.is.an('object');
(0, _chai.expect)(navyModule.Service).to.have.property('Status').that.is.an('object');
});
it('should re-export NavyError', function () {
(0, _chai.expect)(navyModule).to.have.property('NavyError').that.is.a('function');
});
it('should re-export middlewareHelpers', function () {
(0, _chai.expect)(navyModule).to.have.property('middlewareHelpers').that.is.an('object');
});
});