Skip to content

gaslamp


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?

optional logger?: object

Custom logger to use instead of the default GAS Logger.

log

log: (...args) => void

Parameters
args

...unknown[]

Returns

void


afterglowTag?

optional afterglowTag?: string

Optional tag for AfterGlow structured logging integration.