11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ci// Monkeypatch Object.keys() so that it throws an unexpected error. This tests 41cb0ef41Sopenharmony_ci// that `util.inspect()` is unaffected by monkey-patching `Object`. 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_cirequire('../common'); 71cb0ef41Sopenharmony_ciconst assert = require('assert'); 81cb0ef41Sopenharmony_ciconst util = require('util'); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ciObject.keys = () => { throw new Error('fhqwhgads'); }; 111cb0ef41Sopenharmony_ciassert.strictEqual(util.inspect({}), '{}'); 12