From 3f16e332f1c5429695b5a90636d80e8c25e4867a Mon Sep 17 00:00:00 2001 From: Colin Ihrig Date: Mon, 3 Oct 2022 15:25:20 -0400 Subject: [PATCH] test_runner: remove runtime experimental warning This commit removes the experimental warning that is emitted when the test runner is used. The test runner feature is still considered experimental, but this change makes its output easier to read. PR-URL: https://github.com/nodejs/node/pull/44844 Reviewed-By: Moshe Atlow Reviewed-By: James M Snell --- lib/test.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/test.js b/lib/test.js index c8a4bae9148ab4..767d0e83a5f56f 100644 --- a/lib/test.js +++ b/lib/test.js @@ -2,9 +2,6 @@ const { ObjectAssign } = primordials; const { test, describe, it, before, after, beforeEach, afterEach } = require('internal/test_runner/harness'); const { run } = require('internal/test_runner/runner'); -const { emitExperimentalWarning } = require('internal/util'); - -emitExperimentalWarning('The test runner'); module.exports = test; ObjectAssign(module.exports, {