Interface SnapshotCall

Description

A single recorded call entry within a snapshot file.

interface SnapshotCall {
    args: SerializedValue[];
    error?: SerializedValue;
    result: SerializedValue;
}

Properties

Properties

Description

Serialized call arguments (used for callback replay).

Description

Serialized error, if the call threw.

Description

Serialized return value.