HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1991111/root/usr/share/doc/node-tap-parser/examples/
Upload File :
Current File : //proc/1991111/root/usr/share/doc/node-tap-parser/examples/test.js
var test = require('tap').test;

test('beep', function (t) {
    t.plan(2);
    t.equal(2+2,4);
    t.same({a:1,b:2},{a:1,b:1+1});
});

test('boop', function (t) {
    t.plan(2);
    t.equal(1+1,2);
    
    setTimeout(function () {
        t.ok(true);
    }, 1000);
});