mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-19 22:01:42 +00:00
13 lines
349 B
TypeScript
13 lines
349 B
TypeScript
/**
|
|
* Gateway auth mode matrix tests.
|
|
*/
|
|
import { describe } from "vitest";
|
|
import { registerAuthModesSuite } from "./server.auth.modes.suite.js";
|
|
import { installGatewayTestHooks } from "./server.auth.test-helpers.js";
|
|
|
|
installGatewayTestHooks({ scope: "suite" });
|
|
|
|
describe("gateway server auth/connect", () => {
|
|
registerAuthModesSuite();
|
|
});
|