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

const fn = x => x;

function check(x) {
  AsyncIterator.prototype.every.call(x, fn).then(
    () => {
      throw new Error('check should have been rejected');
    },
    err => {
      assertEq(err instanceof TypeError, true);
    }
  );
}

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

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