summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/AsyncIterator/prototype/some/fn-not-callable-throws.js
blob: 74a11ceebf8a314a1a21c9382f4dcff7476872d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// |reftest| skip-if(!this.hasOwnProperty('AsyncIterator')) 

async function *gen() {
  yield 1;
}

function check(fn) {
  gen().some(fn).then(
    () => {
      throw new Error('every should have thrown');
    },
    err => {
      assertEq(err instanceof TypeError, true);
    }
  );
}

check();
check(undefined);
check(null);
check(0);
check(false);
check('');
check(Symbol(''));
check({});

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