Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test_runner: mark mockTimers as stable #55398

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
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
Loading