mirror of https://github.com/openclaw/openclaw.git
10 lines
325 B
TypeScript
10 lines
325 B
TypeScript
import { describe } from "vitest";
|
|
import { registerControlUiAndPairingSuite } from "./server.auth.control-ui.suite.js";
|
|
import { installGatewayTestHooks } from "./server.auth.shared.js";
|
|
|
|
installGatewayTestHooks({ scope: "suite" });
|
|
|
|
describe("gateway server auth/connect", () => {
|
|
registerControlUiAndPairingSuite();
|
|
});
|