Changeset 215938 in webkit


Ignore:
Timestamp:
Apr 28, 2017, 1:13:57 PM (8 years ago)
Author:
Joseph Pecoraro
Message:

LayoutTests/js/dom/Promise-static-all/race.html are flakey - Unhandled Promise Rejection messages
https://bugs.webkit.org/show_bug.cgi?id=171445

Reviewed by Saam Barati.

  • js/dom/Promise-static-all.html:
  • js/dom/Promise-static-race.html:

Silence the console messages for unhandled rejections in this test.
There are unhandled rejections and messages sometimes appear
depending on the order of events on the page. The messages are not
important for this test so just mute them.

Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r215937 r215938  
     12017-04-28  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        LayoutTests/js/dom/Promise-static-all/race.html are flakey - Unhandled Promise Rejection messages
     4        https://bugs.webkit.org/show_bug.cgi?id=171445
     5
     6        Reviewed by Saam Barati.
     7
     8        * js/dom/Promise-static-all.html:
     9        * js/dom/Promise-static-race.html:
     10        Silence the console messages for unhandled rejections in this test.
     11        There are unhandled rejections and messages sometimes appear
     12        depending on the order of events on the page. The messages are not
     13        important for this test so just mute them.
     14
    1152017-04-28  Chris Dumez  <cdumez@apple.com>
    216
  • trunk/LayoutTests/js/dom/Promise-static-all.html

    r161365 r215938  
    99<script>
    1010description('Test Promise.all');
     11
     12// Silence unhandled rejection messages.
     13// window.onunhandledrejection = () => false;
    1114
    1215window.jsTestIsAsync = true;
  • trunk/LayoutTests/js/dom/Promise-static-race.html

    r161330 r215938  
    99<script>
    1010description('Test Promise.race');
     11
     12// Silence unhandled rejection messages.
     13window.onunhandledrejection = () => false;
    1114
    1215window.jsTestIsAsync = true;
Note: See TracChangeset for help on using the changeset viewer.