mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
8a0cc7afc3
Remove one test from test-whatwg-console-is-a-namespace that is not part of the WPT test. Put it in test-console-self-assign. PR-URL: https://github.com/nodejs/node/pull/23340 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
7 lines
150 B
JavaScript
7 lines
150 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
// Assigning to itself should not throw.
|
|
global.console = global.console; // eslint-disable-line no-self-assign
|