Skip to main content
Version: 1.x

Interface: FETestLibraryResponse

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

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:117


message?

readonly optional message: string

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


type

readonly type: "error" | "success"

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