navy
Version:
Quick and powerful development environments using Docker and Docker Compose
17 lines (15 loc) • 1.18 kB
JavaScript
;
var _chai = require("chai");
var cliUtil = _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('cli/util/index', function () {
describe('module exports', function () {
it('should re-export getOrInitialiseNavy as a function', function () {
(0, _chai.expect)(cliUtil).to.have.property('getOrInitialiseNavy').that.is.a('function');
});
it('should re-export importNavy as a function', function () {
(0, _chai.expect)(cliUtil).to.have.property('importNavy').that.is.a('function');
});
});
});