| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'], | 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'], |
| 6 function(dart_sdk, async_helper, expect, unittest, is, require) { | 6 function(dart_sdk, async_helper, expect, unittest, is, require) { |
| 7 'use strict'; | 7 'use strict'; |
| 8 | 8 |
| 9 async_helper = async_helper.async_helper; | 9 async_helper = async_helper.async_helper; |
| 10 let minitest = expect.minitest; | 10 let minitest = expect.minitest; |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 // was https://github.com/dart-lang/sdk/issues/27578, needs triage | 466 // was https://github.com/dart-lang/sdk/issues/27578, needs triage |
| 467 'mediasource_test': 'fail', | 467 'mediasource_test': 'fail', |
| 468 'media_stream_test': 'fail', | 468 'media_stream_test': 'fail', |
| 469 | 469 |
| 470 // https://github.com/dart-lang/sdk/issues/29071 | 470 // https://github.com/dart-lang/sdk/issues/29071 |
| 471 'messageevent_test': firefox_fail, | 471 'messageevent_test': firefox_fail, |
| 472 | 472 |
| 473 'mutationobserver_test': async_unittest, | 473 'mutationobserver_test': async_unittest, |
| 474 'native_gc_test': async_unittest, | 474 'native_gc_test': async_unittest, |
| 475 'postmessage_structured_test': async_unittest, | 475 'postmessage_structured_test': async_unittest, |
| 476 'queryall_test': ['slow'], // see sdk #27794 | 476 |
| 477 // this is timing out on Chrome Canary only |
| 478 // pinning this skip in case it's a transient canary issue |
| 479 'queryall_test': is.chrome('59') ? ['skip'] : ['slow'], // see sdk #27794 |
| 480 |
| 477 'request_animation_frame_test': async_unittest, | 481 'request_animation_frame_test': async_unittest, |
| 478 'resource_http_test': async_unittest, | 482 'resource_http_test': async_unittest, |
| 479 | 483 |
| 480 // was https://github.com/dart-lang/sdk/issues/27578, needs triage | 484 // was https://github.com/dart-lang/sdk/issues/27578, needs triage |
| 481 'rtc_test': is.chrome('<=55') ? fail : pass, | 485 'rtc_test': is.chrome('<=55') ? fail : pass, |
| 482 | 486 |
| 483 // https://github.com/dart-lang/sdk/issues/29071 | 487 // https://github.com/dart-lang/sdk/issues/29071 |
| 484 'serialized_script_value_test': firefox_fail, | 488 'serialized_script_value_test': firefox_fail, |
| 485 | 489 |
| 486 'shadow_dom_test': firefox_fail, | 490 'shadow_dom_test': firefox_fail, |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 | 913 |
| 910 for (let action of unittest_tests) { | 914 for (let action of unittest_tests) { |
| 911 try { | 915 try { |
| 912 action(); | 916 action(); |
| 913 } catch (e) { | 917 } catch (e) { |
| 914 console.error("Caught error tying to setup test:", e); | 918 console.error("Caught error tying to setup test:", e); |
| 915 } | 919 } |
| 916 } | 920 } |
| 917 }); | 921 }); |
| 918 }); | 922 }); |
| OLD | NEW |