interface
test.default.EventData.TestStart
interface TestStart
- column?: number
The column number where the test is defined, or
undefinedif the test was run through the REPL. - entryFile?: string
The path of the test file that was executed as the entry point of the child process that emitted this event. Only present when tests run with process isolation. May differ from
filewhen the test is defined in a module imported by the entry file. - line?: number
The line number where the test is defined, or
undefinedif the test was run through the REPL. - parentId: undefined | number
The
testIdof the enclosing test, orundefinedfor top-level tests. Lets custom reporters track lineage when concurrent siblings at the same nesting level interleave. - testId: number
A numeric identifier for this test instance, unique within the test file's process. Consistent across all events for the same test instance, enabling reliable correlation in custom reporters.