PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/tape/example

Просмотр файла: two.js

'use strict';

var test = require('../');

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);
});

Выполнить команду


Для локальной разработки. Не используйте в интернете!