mongo-portable
Version:
Portable Pure JS MongoDB - Based on Monglodb (https://github.com/euforic/monglodb.git) by Christian Sullivan (http://RogueSynaptics.com)
15 lines (12 loc) • 391 B
text/typescript
import "mocha";
import { expect } from "chai";
import { TestHelper } from "../../helper/index";
import { SelectorMatcher } from "../../../src/selector/index";
TestHelper.initLogger();
describe("SelectorMatcher", function() {
describe("- Constructor", function() {
it("should have the dependencies ready", function() {
TestHelper.assertDependencies([SelectorMatcher]);
});
});
});