docs
evals
scenario-1
scenario-10
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
Format arrays of log entries into newline-separated output that colorizes status labels with the standard foreground palette and uses a bright alias for supporting metadata. Each line follows the pattern (<timestamp>) STATUS: message when a timestamp exists, otherwise STATUS: message, with no trailing newline.
error renders as ERROR: message with the status label colored using the standard red foreground and the message unstyled. @testinfo renders as INFO: message with the status label colored using the standard cyan foreground and the message unstyled. @test/**
* @typedef {Object} LogEntry
* @property {'error' | 'warn' | 'info'} status
* @property {string} message
* @property {string} [timestamp]
*/
/**
* Formats log entries into newline-separated strings with colored status labels and optional timestamp metadata.
* @param {LogEntry[]} entries
* @returns {string} Combined, formatted log output with trailing newline trimmed.
*/
function formatLog(entries) {}Provides standard and bright foreground color helpers for terminal text.