effect-playwright
    Preparing search index...

    Interface Location

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

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

    Column number in the source file.

    file: string

    Path to the source file.

    line: number

    Line number in the source file.