We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 219e0e4 commit f9dde2dCopy full SHA for f9dde2d
2 files changed
mod.test.ts
@@ -0,0 +1,6 @@
1
+import { assertEquals } from "jsr:@std/assert@^1.0.0";
2
+import * as pluginModule from "./mod.ts";
3
+
4
+Deno.test("root plugin module exports only the plugin entrypoint", () => {
5
+ assertEquals(Object.keys(pluginModule).sort(), ["graphiti"]);
6
+});
mod.ts
@@ -1,5 +1 @@
-export {
- graphiti,
- warnOnGraphitiStartupUnavailable,
- warnOnRedisStartupUnavailable,
-} from "./src/index.ts";
+export { graphiti } from "./src/index.ts";
0 commit comments