mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-17 13:00:48 +00:00
10 lines
300 B
TypeScript
10 lines
300 B
TypeScript
import { describe } from "vitest";
|
|
import { registerAuthModesSuite } from "./server.auth.modes.suite.js";
|
|
import { installGatewayTestHooks } from "./server.auth.shared.js";
|
|
|
|
installGatewayTestHooks({ scope: "suite" });
|
|
|
|
describe("gateway server auth/connect", () => {
|
|
registerAuthModesSuite();
|
|
});
|