@irrelon/forerunnerdb-core
Version:
ForerunnerDB core utilities for operating on JSON data.
21 lines (20 loc) • 1.56 kB
JavaScript
;
var _typeof = require("@babel/runtime/helpers/typeof");
var _main = require("./main.js");
var assert = _interopRequireWildcard(require("assert"));
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) { if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } } return n["default"] = e, t && t.set(e, n), n; }
describe("main", function () {
it("Imported insert() correctly", function () {
assert.strictEqual(_main.insert instanceof Function, true, "Is a function");
});
it("Imported find() correctly", function () {
assert.strictEqual(_main.find instanceof Function, true, "Is a function");
});
it("Imported update() correctly", function () {
assert.strictEqual(_main.update instanceof Function, true, "Is a function");
});
it("Imported remove() correctly", function () {
assert.strictEqual(_main.remove instanceof Function, true, "Is a function");
});
});