summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/AsyncIterator/prototype/some/this-not-iterator-throws.js
blob: 1233fc371cf3a198b4c24245b7eda5561d7f430d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// |reftest| skip-if(!this.hasOwnProperty('AsyncIterator')) 

const fn = x => x;
function check(x) {
  AsyncIterator.prototype.some.call(x, fn).then(
    () => assertEq(true, false, 'expected error'),
    err => {
      assertEq(err instanceof TypeError, true);
    }
  );
}

check();
check(undefined);
check({});
check({next: 0});

if (typeof reportCompare === 'function')
  reportCompare(0, 0);