Files
Kmake/test/fixtures/wpt/console/console-log-symbol.any.js
2026-05-26 23:36:42 -07:00

11 lines
292 B
JavaScript

// META: global=window,dedicatedworker,shadowrealm
"use strict";
// https://console.spec.whatwg.org/
test(() => {
console.log(Symbol());
console.log(Symbol("abc"));
console.log(Symbol.for("def"));
console.log(Symbol.isConcatSpreadable);
}, "Logging a symbol doesn't throw");