mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
90e81aaad7
This commit adds a fullName getter to the TestContext and SuiteContext classes. This is similar to the existing name getter, but also includes the name of all ancestor tests/suites. PR-URL: https://github.com/nodejs/node/pull/53169 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Co-authored-by: Jacob Smith <jacob@frende.me>
25 lines
548 B
JavaScript
25 lines
548 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const { strictEqual } = require('node:assert');
|
|
const { suite, test } = require('node:test');
|
|
|
|
suite('suite', (t) => {
|
|
strictEqual(t.fullName, 'suite');
|
|
|
|
test('test', (t) => {
|
|
strictEqual(t.fullName, 'suite > test');
|
|
|
|
t.test('subtest', (t) => {
|
|
strictEqual(t.fullName, 'suite > test > subtest');
|
|
|
|
t.test('subsubtest', (t) => {
|
|
strictEqual(t.fullName, 'suite > test > subtest > subsubtest');
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
test((t) => {
|
|
strictEqual(t.fullName, '<anonymous>');
|
|
});
|