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