node/test/fixtures/test-runner/test_only.js
Moshe Atlow c9e72e34ab
test_runner: accept testOnly in run
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>
2023-09-24 10:46:13 +00:00

5 lines
120 B
JavaScript

'use strict';
const test = require('node:test');
test('this should be skipped');
test.only('this should be executed');