mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-22 10:25:20 -06:00
f72782d87b
* test: restore auth persistence integrity
Restore the SQLite-backed auth wizard assertions traced to 43ea501f38 and consolidate duplicated message-action and temp-directory fixtures.
* test: support npm 12 pack results
13 lines
537 B
TypeScript
13 lines
537 B
TypeScript
/**
|
|
* Browser test-support re-exports from shared plugin-sdk test fixtures.
|
|
*/
|
|
export {
|
|
createCliRuntimeCapture,
|
|
expectGeneratedTokenPersistedToGatewayAuth,
|
|
type CliRuntimeCapture,
|
|
} from "openclaw/plugin-sdk/test-fixtures";
|
|
export { createTempHomeEnv, useAutoCleanupTempDirTracker } from "openclaw/plugin-sdk/test-env";
|
|
export type { TempHomeEnv } from "openclaw/plugin-sdk/test-env";
|
|
export { isLiveTestEnabled } from "openclaw/plugin-sdk/test-live";
|
|
export type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";
|