Interface TerminalObserver

interface TerminalObserver {
    nrOfLinesToMatch: number;
    outputMatcherRegex: string;
    matchOccurred(groups): void;
}

Properties

nrOfLinesToMatch: number

The maximum number of lines to match the regex against. Maximum is 40 lines.

outputMatcherRegex: string

A regex to match against the latest terminal output.

Methods