Skip to content

Commit f477c87

Browse files
committedMay 8, 2015
spawn: emit a 'skip' for tests that do nothing
1 parent 59e1763 commit f477c87

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed
 

‎lib/test.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -494,8 +494,15 @@ Test.prototype.spawn = function spawnTest (cmd, args, options, name, extra) {
494494
bailOnFail(this, child.stdout, parser)
495495

496496
child.stdout.emit('data', '# Subtest: ' + name + '\n')
497+
var sawOutput = false
498+
child.stdout.once('data', function () {
499+
sawOutput = true
500+
})
497501

498502
child.stdout.on('end', function () {
503+
// if there's been literally no output, then emit the minimum viable tap
504+
if (!sawOutput)
505+
child.stdout.emit('data', '1..0\n')
499506
parser.end()
500507
})
501508

@@ -517,14 +524,18 @@ Test.prototype.spawn = function spawnTest (cmd, args, options, name, extra) {
517524
extra.results = results
518525
var dur = process.hrtime(start)
519526
var time = Math.round(dur[0] * 1e6 + dur[1] / 1e3) / 1e3
520-
name += ' # time=' + time + 'ms'
521527
if (code)
522528
extra.exitCode = code
523529
if (signal)
524530
extra.signal = signal
525531
extra.command = cmd
526532
extra.arguments = args
527533

534+
if (results.count === 0)
535+
extra.skip = 'No tests found'
536+
else
537+
name += ' # time=' + time + 'ms'
538+
528539
self.ok(results.ok && !code, name, extra)
529540
if (!self._ended)
530541
self.push('\n')

‎test/test/spawn-empty.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
if (process.argv[2] === 'child')
2+
return
3+
4+
var t = require('../..')
5+
t.spawn(process.execPath, [__filename, 'child'])

‎test/test/spawn-empty.tap

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
TAP version 13
2+
# Subtest: ___/.*/~~~spawn-empty.js child
3+
1..0
4+
ok 1 - ___/.*/~~~spawn-empty.js child # SKIP No tests found
5+
6+
1..1
7+
___/# time=[0-9.]+(ms)?/~~~
8+

0 commit comments

Comments
 (0)
Please sign in to comment.