| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 | 490 |
| 491 // was https://github.com/dart-lang/sdk/issues/27578, needs triage | 491 // was https://github.com/dart-lang/sdk/issues/27578, needs triage |
| 492 'rtc_test': is.chrome('<=55') ? fail : pass, | 492 'rtc_test': is.chrome('<=55') ? fail : pass, |
| 493 | 493 |
| 494 // https://github.com/dart-lang/sdk/issues/29071 | 494 // https://github.com/dart-lang/sdk/issues/29071 |
| 495 'serialized_script_value_test': firefox_fail, | 495 'serialized_script_value_test': firefox_fail, |
| 496 | 496 |
| 497 'shadow_dom_test': firefox_fail, | 497 'shadow_dom_test': firefox_fail, |
| 498 | 498 |
| 499 // was https://github.com/dart-lang/sdk/issues/27578, needs triage | 499 // was https://github.com/dart-lang/sdk/issues/27578, needs triage |
| 500 'speechrecognition_test': firefox_fail, |
| 500 'svgelement_test': chrome_fail, | 501 'svgelement_test': chrome_fail, |
| 501 'text_event_test': firefox_fail, | 502 'text_event_test': firefox_fail, |
| 502 | 503 |
| 503 // was https://github.com/dart-lang/sdk/issues/27578, needs triage | 504 // was https://github.com/dart-lang/sdk/issues/27578, needs triage |
| 504 'touchevent_test': 'fail', | 505 'touchevent_test': 'fail', |
| 505 | 506 |
| 506 'transferables_test': async_unittest, | 507 'transferables_test': async_unittest, |
| 507 'transition_event_test': async_unittest, | 508 'transition_event_test': async_unittest, |
| 508 'url_test': async_unittest, | 509 'url_test': async_unittest, |
| 509 'websocket_test': async_unittest, | 510 'websocket_test': async_unittest, |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 | 923 |
| 923 for (let action of unittest_tests) { | 924 for (let action of unittest_tests) { |
| 924 try { | 925 try { |
| 925 action(); | 926 action(); |
| 926 } catch (e) { | 927 } catch (e) { |
| 927 console.error("Caught error tying to setup test:", e); | 928 console.error("Caught error tying to setup test:", e); |
| 928 } | 929 } |
| 929 } | 930 } |
| 930 }); | 931 }); |
| 931 }); | 932 }); |
| OLD | NEW |