mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 03:31:35 +00:00

PR-URL: https://github.com/nodejs/node/pull/43420 Refs: https://github.com/nodejs/node/issues/43415 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
11 lines
305 B
JavaScript
11 lines
305 B
JavaScript
'use strict';
|
|
const { test, describe, it } = require('internal/test_runner/harness');
|
|
const { emitExperimentalWarning } = require('internal/util');
|
|
|
|
emitExperimentalWarning('The test runner');
|
|
|
|
module.exports = test;
|
|
module.exports.test = test;
|
|
module.exports.describe = describe;
|
|
module.exports.it = it;
|