mirror of
https://github.com/nvms/prsm.git
synced 2025-12-16 16:10:54 +00:00
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import { describe } from "manten";
|
|
|
|
await describe("find", async ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/finding"));
|
|
});
|
|
|
|
await describe("filter", async ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/filter"));
|
|
});
|
|
|
|
await describe("insert", async ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/insert"));
|
|
});
|
|
|
|
await describe("options", async ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/options"));
|
|
});
|
|
|
|
await describe("operators", ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/operators/boolean"));
|
|
runTestSuite(import("./specs/operators/mutation"));
|
|
});
|
|
|
|
await describe("upsert", ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/upsert"));
|
|
});
|
|
|
|
await describe("transactions", ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/transactions"));
|
|
});
|
|
|
|
await describe("remove", ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/remove"));
|
|
});
|
|
|
|
await describe("encrypted adapter", ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/encrypted_adapter"));
|
|
});
|
|
|
|
await describe("utils", ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/utils"));
|
|
});
|
|
|
|
await describe("indexes", ({ runTestSuite}) => {
|
|
runTestSuite(import("./specs/index.test.js"));
|
|
});
|
|
|
|
await describe("sharded collection", ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/sharded_collection"));
|
|
});
|
|
|
|
await describe("Collection.from", ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/from"));
|
|
});
|
|
|
|
await describe("core", ({ runTestSuite }) => {
|
|
runTestSuite(import("./specs/core"));
|
|
});
|