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?
readonlyoptionalfeLogs: readonlystring[]
Defined in: src/fe/types.ts:117
message?
readonlyoptionalmessage:string
Defined in: src/fe/types.ts:118
type
readonlytype:"error"|"success"
Defined in: src/fe/types.ts:116