Interface Location

Represents a location in the source code where [TestCase] or [Suite] is defined.

interface Location {
    column: number;
    file: string;
    line: number;
}

Properties

Properties

column: number

Column number in the source file.

file: string

Path to the source file.

line: number

Line number in the source file.