Skip to main content
Version: 1.x

Interface: ControlTreeTestEntry

A single failed test entry with its captured control tree snapshot.

Example

const entry: ControlTreeTestEntry = {
testTitle: 'should create purchase order',
testFile: 'tests/po-create.spec.ts',
snapshot: { ... },
};

Properties

snapshot

readonly snapshot: ControlTreeSnapshot

The captured control tree snapshot.


testFile

readonly testFile: string

File path of the test.


testTitle

readonly testTitle: string

Title of the failed test.