Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test.js « lib - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa319fa17b37bd70aecbbd76afaebca669beeb09 (plain)
1
2
3
4
5
6
7
8
'use strict';
const test = require('internal/test_runner/harness');
const { emitExperimentalWarning } = require('internal/util');

emitExperimentalWarning('The test runner');

module.exports = test;
module.exports.test = test;