Skip to content

Commit 61d240f

Browse files
authoredApr 14, 2022
Merge pull request #425 from XmiliaH/fix-424
Add uptime
2 parents 7335793 + f88a226 commit 61d240f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎lib/setup-node-sandbox.js

+5
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,8 @@ function process() {
330330
return this;
331331
}
332332

333+
const baseUptime = localProcess.uptime();
334+
333335
// FIXME wrong class structure
334336
global.process = {
335337
__proto__: process.prototype,
@@ -354,6 +356,9 @@ global.process = {
354356
hrtime: function hrtime(time) {
355357
return localProcess.hrtime(time);
356358
},
359+
uptime: function uptime() {
360+
return localProcess.uptime() - baseUptime;
361+
},
357362
cwd: function cwd() {
358363
return localProcess.cwd();
359364
},

0 commit comments

Comments
 (0)
Please sign in to comment.