Interface: JestLiteOptions¶
Options for test runner behavior and logging.
Since¶
0.22.0
Example¶
JavaScript
const options = {
logger: { log: (...args) => console.log(...args) },
};
gaslamp.JestLite.runTests([suite], options);
Properties¶
logger?¶
optionallogger?:object
Custom logger to use instead of the default GAS Logger.
log¶
log: (...
args) =>void
Parameters¶
args¶
...unknown[]
Returns¶
void
afterglowTag?¶
optionalafterglowTag?:string
Optional tag for AfterGlow structured logging integration.