It's easy to make a test skipped with test.skip() and then forget about it. It's visible in the results, but still easily missed.
import test from 'tape';
test('foo', t => {
t.pass();
});
test.skip('bar', t => {
t.pass();
});
import test from 'tape';
test('foo', t => {
t.pass();
});
test('bar', t => {
t.pass();
});