mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-03 15:04:09 +00:00
* test: speed up slow test suite * test: preserve fake timer cleanup hooks * test: avoid timeout readiness race * test: satisfy reply test types * test: restore runner and image coverage * test: restore final media runner path * test: make cli auth status fixture deterministic * test: repair runtime alias fixtures
17 lines
498 B
TypeScript
17 lines
498 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" });
|
|
|
|
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();
|
|
});
|