HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/root/usr/share/doc/node-tape/examples/
Upload File :
Current File : //proc/1784574/root/usr/share/doc/node-tape/examples/two.js
'use strict';

var test = require('tape');

test('one', function (t) {
	t.plan(2);
	t.ok(true);
	setTimeout(function () {
		t.equal(1 + 3, 4);
	}, 100);
});

test('two', function (t) {
	t.plan(3);
	t.equal(5, 2 + 3);
	setTimeout(function () {
		t.equal('a'.charCodeAt(0), 97);
		t.ok(true);
	}, 50);
});