fix(ci): route extension test helpers through public sdk seams

This commit is contained in:
Vincent Koc
2026-04-04 00:03:24 +09:00
parent ad8870ae28
commit 6366010884
27 changed files with 46 additions and 31 deletions

View File

@@ -4,8 +4,13 @@ export {
type CliRuntimeCapture,
} from "../../src/cli/test-runtime-capture.js";
export { isLiveTestEnabled } from "../../src/agents/live-test-helpers.js";
export { type OpenClawConfig } from "openclaw/plugin-sdk/browser-support";
export {
createTempHomeEnv,
type FetchMock,
type OpenClawConfig,
type TempHomeEnv,
withEnv,
withEnvAsync,
withFetchPreconnect,
} from "openclaw/plugin-sdk/browser-support";
export { expectGeneratedTokenPersistedToGatewayAuth } from "../../src/test-utils/auth-token-assertions.js";
export { withEnv, withEnvAsync } from "../../test/helpers/plugins/env.ts";
export { withFetchPreconnect, type FetchMock } from "../../test/helpers/plugins/fetch-mock.ts";
export { createTempHomeEnv, type TempHomeEnv } from "../../test/helpers/plugins/temp-home.ts";