mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 08:11:47 +00:00
13 lines
373 B
TypeScript
13 lines
373 B
TypeScript
/**
|
|
* Gateway default auth-token tests.
|
|
*/
|
|
import { describe } from "vitest";
|
|
import { registerDefaultAuthTokenSuite } from "./server.auth.default-token.suite.js";
|
|
import { installGatewayTestHooks } from "./server.auth.test-helpers.js";
|
|
|
|
installGatewayTestHooks({ scope: "suite" });
|
|
|
|
describe("gateway server auth/connect", () => {
|
|
registerDefaultAuthTokenSuite();
|
|
});
|