Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz committed Feb 1, 2023
1 parent 873c416 commit 70596ac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/parallel/test-vm-global-symbol.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use strict';
require('../common');
const assert = require('assert');
const vm = require('vm');

Expand All @@ -10,5 +11,5 @@ Object.defineProperty(global, totoSymbol, {
value: 4,
configurable: true,
});
assert(global[totoSymbol] === 4);
assert(Object.getOwnPropertySymbols(global).includes(totoSymbol));
assert.ok(global[totoSymbol] === 4);
assert.ok(Object.getOwnPropertySymbols(global).includes(totoSymbol));

0 comments on commit 70596ac

Please sign in to comment.