mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-20 02:41:41 +00:00
20 lines
554 B
TypeScript
20 lines
554 B
TypeScript
/**
|
|
* Gateway Control UI auth pairing tests.
|
|
*/
|
|
import { describe } from "vitest";
|
|
import { registerControlUiAndPairingSuite } from "./server.auth.control-ui.suite.js";
|
|
import { installGatewayTestHooks } from "./server.auth.test-helpers.js";
|
|
|
|
installGatewayTestHooks({ scope: "suite" });
|
|
|
|
await Promise.all([
|
|
import("./server.js"),
|
|
import("../infra/device-bootstrap.js"),
|
|
import("../infra/device-identity.js"),
|
|
import("../infra/device-pairing.js"),
|
|
]);
|
|
|
|
describe("gateway server auth/connect", () => {
|
|
registerControlUiAndPairingSuite();
|
|
});
|