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