This website works better with JavaScript.
Home
Explore
Help
Sign In
lukechilds
/
node
mirror of
https://github.com/lukechilds/node.git
Watch
1
Star
0
Fork
0
Code
Issues
Projects
Releases
Wiki
Activity
18293
Commits
131
Branches
446
Tags
325 MiB
Tree:
0fab3b04ba
node
/
test
/
fixtures
/
failmustcall2.js
4 lines
89 B
Raw
Normal View
History
test: add mustCallAtLeast PR-URL: https://github.com/nodejs/node/pull/12935 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
8 years ago
const
common
=
require
(
'../common'
)
;
const
f
=
common
.
mustCallAtLeast
(
(
)
=>
{
}
,
2
)
;
f
(
)
;