mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-26 09:02:11 +03:00
Cherry-picked the author's cleaned single-commit head onto the current tip. One fix applied pre-merge: the removal migration collided at number 161 with today's config_audit_log migration (#11103) — renumbered to 162_remove_hackclub_provider.sql. Focused tests: remove-hackclub-11118 + provider-metrics-deleted-provider green; check:provider-consistency OK (266/348/0). Provider removal requested by Hack Club maintainers (#11118). Thank you @rqzbeh!
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import { REGISTRY } from "../../open-sse/config/providers/index.ts";
|
|
|
|
test("hackclub provider is removed from REGISTRY", () => {
|
|
assert.equal("hackclub" in REGISTRY, false);
|
|
});
|