Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: fix lint errors
  • Loading branch information
efekrskl committed Dec 21, 2025
commit d8e55f9efea47e5d6344b11a4248e9aefa880ba1
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use strict';

require('../common');
const assert = require('assert');
const util = require('util');

Expand All @@ -12,8 +13,7 @@ const fakeEventTarget = {
someOtherField: 42
};

// should not throw when calling the custom inspect method
// Should not throw when calling the custom inspect method
const output = util.inspect(fakeEventTarget);

assert.strictEqual(typeof output, 'string');

Loading