Skip to content
Snippets Groups Projects
S25.4.4.1_A3.1_T1.js 689 B
Newer Older
  • Learn to ignore specific revisions
  • // Copyright 2014 Cubane Canada, Inc.  All rights reserved.
    // See LICENSE for details.
    
    Brian Terlson's avatar
    Brian Terlson committed
    /*---
    info: >
    
        Promise.all expects an iterable argument;
    
    Brian Terlson's avatar
    Brian Terlson committed
        ref 7.4.1 non-Object fails CheckIterable
        ref 7.4.2 GetIterator throws TypeError if CheckIterable fails
    
    Brian Terlson's avatar
    Brian Terlson committed
    author: Sam Mikes
    
    description: Promise.all(3) returns Promise rejected with TypeError
    
    Brian Terlson's avatar
    Brian Terlson committed
    ---*/
    
    
    var nonIterable = 3;
    
    Promise.all(nonIterable).then(function () {
        $ERROR('Promise unexpectedly resolved: Promise.all(nonIterable) should throw TypeError');
    },function (err) {
        if (!(err instanceof TypeError)) {
            $ERROR('Expected TypeError, got ' + err);
        }
    
    }).then($DONE, $DONE);