���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /lib/node_modules/forever/node_modules/tape/test/ |
var test = require('../'); var ran = 0; test('do not skip this', { skip: false }, function(t) { t.pass('this should run'); ran ++; t.end(); }); test('skip this', { skip: true }, function(t) { t.fail('this should not even run'); t.end(); }); test('skip subtest', function(t) { ran ++; t.test('do not skip this', { skip: false }, function(t) { ran ++; t.pass('this should run'); t.end(); }); t.test('skip this', { skip: true }, function(t) { t.fail('this should not even run'); t.end(); }); t.end(); }); test('right number of tests ran', function(t) { t.equal(ran, 3, 'ran the right number of tests'); t.end(); }); // vim: set softtabstop=4 shiftwidth=4: