PR-URL: https://github.com/nodejs/node/pull/49753 Fixes: https://github.com/nodejs/node/issues/49733 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Raz Luvaton <rluvaton@gmail.com>
5 lines
120 B
JavaScript
5 lines
120 B
JavaScript
'use strict';
|
|
const test = require('node:test');
|
|
|
|
test('this should be skipped');
|
|
test.only('this should be executed');
|