Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
test_runner: mark mockTimers as stable
  • Loading branch information
ErickWendel committed Oct 15, 2024
commit 248fe80b5b905b75f5de68167ff443ccedfed861
2 changes: 1 addition & 1 deletion doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -2224,7 +2224,7 @@ added:
- v18.19.0
-->

> 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