Interface FakeTimeOptions

The option for FakeTime

interface FakeTimeOptions {
    advanceFrequency?: number;
    advanceRate: number;
}

Properties

advanceFrequency?: number

The frequency in milliseconds at which fake time is updated. If advanceRate is set, we will update the time every 10 milliseconds by default.

{10}
advanceRate: number

The rate relative to real time at which fake time is updated. By default time only moves forward through calling tick or setting now. Set to 1 to have the fake time automatically tick forward at the same rate in milliseconds as real time.

{0}