-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #51246 Fixes: #51237 Reviewed-By: Raz Luvaton <rluvaton@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
- Loading branch information
1 parent
857a34b
commit 6329d2c
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
|
||
const timer = require('node:timers'); | ||
const timerPromises = require('node:timers/promises'); | ||
const assert = require('assert'); | ||
const { test } = require('node:test'); | ||
|
||
test('(node:timers/promises) is equal to (node:timers).promises', common.mustCall(() => { | ||
assert.deepStrictEqual(timerPromises, timer.promises); | ||
})); |