Skip to main content

Interface: FETestLibraryResponse

Defined in: src/fe/types.ts:106

Response envelope from browser-side FE script execution.

Remarks​

Returned by FE_EMPTY_QUEUE_SCRIPT after OPA5 queue execution. Contains success/error status, optional assertion logs, and a message.

Example​

const response: FETestLibraryResponse = {
type: 'success',
feLogs: ['Filter applied: Status = Open'],
message: 'Queue executed successfully',
};

Properties​

feLogs?​

readonly optional feLogs: readonly string[]

Defined in: src/fe/types.ts:108


message?​

readonly optional message: string

Defined in: src/fe/types.ts:109


type​

readonly type: "success" | "error"

Defined in: src/fe/types.ts:107