One Hat Cyber Team
Your IP :
10.30.1.1
Server IP :
103.148.201.5
Server :
Linux web-olt 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Server Software :
Apache/2.4.52 (Ubuntu)
PHP Version :
8.1.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
node-tap
/
examples
/
Edit File:
long-slow-many.js
var t = require('tap') t.plan(2) t.test('gun show', function (t) { t.plan(100) var n = 0 var i = setInterval(function () { if (n % 123 === 5) { t.fail('FIRE!') t.fail('THE BUILDING IS ON FIRE') } else { t.pass('this is ok') t.pass('i am ok with how things are proceeding') } if (++n === 50) { return clearInterval(i) } }, 100) }) t.test('wondermark', function (t) { t.plan(500) var n = 0 var j = setInterval(function () { if (n % 123 === 35) { t.fail('I AM EATING BREAKFAST') t.fail('FUCKING SEALIONS') } else { t.pass('excuse me') t.pass('pardon me') } if (++n === 250) { return clearInterval(j) } }, 10) })
Simpan