We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 020bc92 commit b24cd68Copy full SHA for b24cd68
test/parallel/test-vm-global-symbol.js
@@ -11,5 +11,5 @@ Object.defineProperty(global, totoSymbol, {
11
value: 4,
12
configurable: true,
13
});
14
-assert.ok(global[totoSymbol] === 4);
+assert.strictEqual(global[totoSymbol], 4);
15
assert.ok(Object.getOwnPropertySymbols(global).includes(totoSymbol));
0 commit comments