mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
refactor(qa-lab): localize orchestration declarations (#102005)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
export type QaEvidenceGalleryStatus = "pass" | "fail" | "blocked" | "skipped";
|
||||
type QaEvidenceGalleryStatus = "pass" | "fail" | "blocked" | "skipped";
|
||||
|
||||
export type QaEvidenceCoverageView = {
|
||||
type QaEvidenceCoverageView = {
|
||||
id: string;
|
||||
role: string;
|
||||
};
|
||||
|
||||
@@ -12,7 +12,7 @@ const QA_SMOKE_PROFILE = "smoke-ci";
|
||||
const QA_SMOKE_DEFAULT_CHANNEL_SHARDS = 2;
|
||||
const QA_SMOKE_MAX_SHARDS = 8;
|
||||
|
||||
export type QaSmokeCiShard = {
|
||||
type QaSmokeCiShard = {
|
||||
name: string;
|
||||
slug: string;
|
||||
channel: string;
|
||||
|
||||
@@ -23,7 +23,7 @@ export const DEFAULT_QA_CONTROL_UI_ALLOWED_ORIGINS = Object.freeze([
|
||||
]);
|
||||
|
||||
export const QA_BASE_RUNTIME_PLUGIN_IDS = Object.freeze(["acpx", "memory-core"]);
|
||||
export const QA_LAB_PLUGIN_ID = "qa-lab";
|
||||
const QA_LAB_PLUGIN_ID = "qa-lab";
|
||||
|
||||
export function mergeQaControlUiAllowedOrigins(extraOrigins?: string[]) {
|
||||
const normalizedExtra = (extraOrigins ?? [])
|
||||
|
||||
@@ -30,7 +30,7 @@ export type QaTransportAdapterFactoryResult<
|
||||
|
||||
export type QaTransportAdapterFactory = NonNullable<QaRunnerCliRegistration["adapterFactory"]>;
|
||||
|
||||
export type QaTransportAdapterFactoryRegistry = {
|
||||
type QaTransportAdapterFactoryRegistry = {
|
||||
create: (context: QaTransportFactoryContext) => Promise<QaTransportAdapterFactoryResult>;
|
||||
};
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ export type QaSuiteRuntimeResult =
|
||||
result: QaUnifiedSuiteResult;
|
||||
};
|
||||
|
||||
export type QaUnifiedSuiteResult = {
|
||||
type QaUnifiedSuiteResult = {
|
||||
evidencePath: string;
|
||||
outputDir: string;
|
||||
report: string;
|
||||
|
||||
@@ -32,7 +32,7 @@ export type QaTestFileScenario = QaSeedScenarioWithSource & {
|
||||
|
||||
export type QaTestFileExecutionKind = "script" | "vitest" | "playwright";
|
||||
|
||||
export type QaTestFileScenarioRunParams = {
|
||||
type QaTestFileScenarioRunParams = {
|
||||
commandTimeoutMs?: number;
|
||||
evidenceMode?: QaScorecardEvidenceMode;
|
||||
env?: NodeJS.ProcessEnv;
|
||||
|
||||
Reference in New Issue
Block a user