PHP WebShell

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

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

'use strict';

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

test('only3 test 1', function (t) {
	t.fail('not 1');
	t.end();
});

test.only('only3 test 2', function (t) {
	t.end();
});

test('only3 test 3', function (t) {
	t.fail('not 3');
	t.end();
});

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


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