Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -2222,9 +2222,13 @@ set to `true`.
added:
- v20.4.0
- v18.19.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/55398
description: The Mock Timers is now stable.
-->

> Stability: 1 - Experimental
> Stability: 2 - Stable

Mocking timers is a technique commonly used in software testing to simulate and
control the behavior of timers, such as `setInterval` and `setTimeout`,
Expand Down
7 changes: 0 additions & 7 deletions lib/internal/test_runner/mock/mock_timers.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ const {
validateStringArray,
} = require('internal/validators');

const {
emitExperimentalWarning,
} = require('internal/util');
const {
AbortError,
codes: {
Expand Down Expand Up @@ -133,10 +130,6 @@ class MockTimers {
#clearInterval = FunctionPrototypeBind(this.#clearTimer, this);
#clearImmediate = FunctionPrototypeBind(this.#clearTimer, this);

constructor() {
emitExperimentalWarning('The MockTimers API');
}

#restoreSetImmediate() {
ObjectDefineProperty(
globalThis,
Expand Down
Loading