This is a testharness.js-based test.
FAIL console.count()'s label gets converted to string via label.toString() when label is an object assert_true: toString() must be called on count()'s label when label is an object expected true got false
FAIL console.count() throws exceptions generated by erroneous label.toString() conversion assert_throws: count() must re-throw any exceptions thrown by label.toString() conversion function "() => {
    console.count({
      toString() {
        throw new Error("conversion error");
      }
    });
  }" did not throw
Harness: the test ran to completion.

