mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-11 01:32:22 +03:00
10 lines
355 B
TypeScript
10 lines
355 B
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
|
|
test("combo routing module loads without unresolved symbols", async () => {
|
|
const combo = await import("../../open-sse/services/combo.ts");
|
|
|
|
assert.equal(typeof combo.filterTargetsByRequestCompatibility, "function");
|
|
assert.equal(typeof combo.handleComboChat, "function");
|
|
});
|