fix(clock): amend setSystemTime docs

This commit is contained in:
Simon Knott 2024-10-01 16:17:23 +02:00
parent 8688af0580
commit e271aa9f7f
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC
2 changed files with 2 additions and 2 deletions

View file

@ -249,7 +249,7 @@ Time to be set.
## async method: Clock.setSystemTime ## async method: Clock.setSystemTime
* since: v1.45 * since: v1.45
Sets current system time but does not trigger any timers. Sets current system time without pausing, but does not trigger any timers. You most likely don't need this.
**Usage** **Usage**

View file

@ -18555,7 +18555,7 @@ export interface Clock {
setFixedTime(time: number|string|Date): Promise<void>; setFixedTime(time: number|string|Date): Promise<void>;
/** /**
* Sets current system time but does not trigger any timers. * Sets current system time without pausing, but does not trigger any timers. You most likely don't need this.
* *
* **Usage** * **Usage**
* *