2022-02-09 00:23:36 -05:00
|
|
|
'use strict';
|
2022-06-14 10:54:50 +03:00
|
|
|
const { test, describe, it } = require('internal/test_runner/harness');
|
2022-02-09 00:23:36 -05:00
|
|
|
const { emitExperimentalWarning } = require('internal/util');
|
|
|
|
|
|
|
|
emitExperimentalWarning('The test runner');
|
|
|
|
|
|
|
|
module.exports = test;
|
|
|
|
module.exports.test = test;
|
2022-06-14 10:54:50 +03:00
|
|
|
module.exports.describe = describe;
|
|
|
|
module.exports.it = it;
|