Parameters for commands

Remarks

Since 2.2.0

interface CommandsContraints {
    disableReplayLog?: boolean;
    maxCommands?: number;
    replayPath?: string;
    size?: SizeForArbitrary;
}

Properties

disableReplayLog?: boolean

Do not show replayPath in the output

Default Value

false

Remarks

Since 1.11.0

maxCommands?: number

Maximal number of commands to generate per run

You probably want to use size instead.

Default Value

0x7fffffff — defaulting seen as "max non specified" when defaultSizeToMaxWhenMaxSpecified=true

Remarks

Since 1.11.0

replayPath?: string

Hint for replay purposes only

Should be used in conjonction with { seed, path } of assert

Remarks

Since 1.11.0

Define how large the generated values (number of commands) should be (at max)

Remarks

Since 2.22.0