Merge pull request from adroitwhiz/no-relativetime

Remove Timer.relativeTime
This commit is contained in:
Christopher Willis-Ford 2023-10-17 12:58:18 -07:00 committed by GitHub
commit 15cdd2f69a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 21 deletions
test/fixtures

View file

@ -78,15 +78,6 @@ class MockTimer {
return this._mockTime;
}
/**
* Returns a time accurate relative to other times produced by this function.
* @returns {number} ms-scale accurate time relative to other relative times.
* @memberof MockTimer
*/
relativeTime () {
return this._mockTime;
}
/**
* Start a timer for measuring elapsed time.
* @memberof MockTimer