Description
Version
v18.3.0
Platform
Darwin willmunn-2 20.6.0 Darwin Kernel Version 20.6.0: Tue Feb 22 21:10:41 PST 2022; root:xnu-7195.141.26~1/RELEASE_X86_64 x86_64
Subsystem
test_runner
What steps will reproduce the bug?
I wanted to try the new test runner, being a long term tape user, this was pretty exciting as the apis are very similar. It seems the test summary at the end of the tap output is recording test counts as the number of test files. I had a go at a simple fizz buzz implementation:
import test from 'node:test';
import assert from 'assert';
import test from 'node:test';
import assert from 'assert';
const fizzbuzz = (num) => {
const special = [
{condition: num % 3 === 0, output: 'fizz'},
{condition: num % 5 === 0, output: 'buzz'},
];
const specialAnswer = special.reduce((output, x) => x.condition ? output + x.output : output, '');
return specialAnswer ? specialAnswer : num;
};
test('1 should return 1', t => {
assert.equal(fizzbuzz(1), 1);
});
test('3 should return fizz', t => {
assert.equal(fizzbuzz(3), 'fizz');
});
test('5 should return buzz', t => {
assert.equal(fizzbuzz(5), 'buzz');
});
test('15 should return fizzbuzz', t => {
assert.equal(fizzbuzz(5), 'buzz');
});
test('16 should return 16', t => {
assert.equal(fizzbuzz(16), 16);
});
node --test
returns the following output:
TAP version 13
ok 1 - /Users/will.munn/code/experiments/node18/tests/test.js
---
duration_ms: 0.07915145
...
1..1
# tests 1
# pass 1
# fail 0
# skipped 0
# todo 0
# duration_ms 0.126770722
note that the the output suggests that only 1 test has been run. After adding another test file, I noticed that the output is actually counting the number of files, not the number of test()
blocks or the amount of assertions.
If I add a test.skip
to one of the tests, it will still report that there are 0 skipped tests.
How often does it reproduce? Is there a required condition?
No response
What is the expected behavior?
I personally think the best solution would be that The TAP output reports the number of test()
blocks rather that the number of test files. So for my example:
TAP version 13
ok 1 - /Users/will.munn/code/experiments/node18/tests/test.js
---
duration_ms: 0.07915145
...
1..5
# tests 5
# pass 5
# fail 0
# skipped 0
# todo 0
# duration_ms
What do you see instead?
TAP version 13
ok 1 - /Users/will.munn/code/experiments/node18/tests/test.js
---
duration_ms: 0.07915145
...
1..1
# tests 1
# pass 1
# fail 0
# skipped 0
# todo 0
# duration_ms 0.126770722
Additional information
Note that my suggestion is actually different to what the tape module does, this reports counts based on the number of assertions. I personally feel that number of test
blocks makes the most sense.