UNPKG

iridium

Version:

A custom lightweight ORM for MongoDB designed for power-users

16 lines 591 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Iridium = require("../iridium"); const chai = require("chai"); describe("Iridium", () => { it("should expose the Core", () => { chai.expect(Iridium.Core).to.exist.and.be.a("function"); }); it("should expose the Model constructor", () => { chai.expect(Iridium.Model).to.exist.and.be.a("function"); }); it("should expose the default Instance class", () => { chai.expect(Iridium.Instance).to.exist.and.be.a("function"); }); }); //# sourceMappingURL=Iridium.js.map