Changeset 230291 in webkit


Ignore:
Timestamp:
Apr 4, 2018 7:06:10 PM (6 years ago)
Author:
youenn@apple.com
Message:

http/wpt/loading/redirect-headers.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=184317

Reviewed by Ryosuke Niwa.

Wait for the completion of the fetch to end the test.

  • http/wpt/loading/redirect-headers.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r230290 r230291  
     12018-04-04  Youenn Fablet  <youenn@apple.com>
     2
     3        http/wpt/loading/redirect-headers.html is flaky
     4        https://bugs.webkit.org/show_bug.cgi?id=184317
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Wait for the completion of the fetch to end the test.
     9
     10        * http/wpt/loading/redirect-headers.html:
     11
    1122018-04-04  Youenn Fablet  <youenn@apple.com>
    213
  • trunk/LayoutTests/http/wpt/loading/redirect-headers.html

    r230224 r230291  
    1010async function doTest()
    1111{
    12     await fetch("../beacon/resources/redirect.py?status=302&location=/");
     12    const response = await fetch("../beacon/resources/redirect.py?status=302&location=/");
     13    await response.text();
    1314    testRunner.notifyDone();
    1415}
Note: See TracChangeset for help on using the changeset viewer.