tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

S25.4.4.4_A1.1_T1.js (364B)


      1 // Copyright 2014 Cubane Canada, Inc.  All rights reserved.
      2 // See LICENSE for details.
      3 
      4 /*---
      5 info: |
      6   Promise.reject
      7 es6id: S25.4.4.4_A1.1_T1
      8 author: Sam Mikes
      9 description: Promise.reject is a function
     10 ---*/
     11 assert.sameValue(
     12  typeof Promise.reject,
     13  "function",
     14  'The value of `typeof Promise.reject` is expected to be "function"'
     15 );
     16 
     17 reportCompare(0, 0);