| 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 'css_test': async_unittest, | 411 'css_test': async_unittest, |
| 412 | 412 |
| 413 // This is failing with a range error, I'm guessing because it's looking | 413 // This is failing with a range error, I'm guessing because it's looking |
| 414 // for a stylesheet and the page has none. | 414 // for a stylesheet and the page has none. |
| 415 'css_rule_list_test': 'fail', | 415 'css_rule_list_test': 'fail', |
| 416 | 416 |
| 417 'custom_element_method_clash_test': async_unittest, | 417 'custom_element_method_clash_test': async_unittest, |
| 418 'custom_element_name_clash_test': async_unittest, | 418 'custom_element_name_clash_test': async_unittest, |
| 419 'custom_elements_23127_test': async_unittest, | 419 'custom_elements_23127_test': async_unittest, |
| 420 'custom_elements_test': async_unittest, | 420 'custom_elements_test': async_unittest, |
| 421 'debugger_test': firefox_fail, | 421 |
| 422 // TODO(jmesserly): investigate the change here; it is likely due to |
| 423 // different reified types affecting the (gigantic) HTML literal |
| 424 'debugger_test': fail, // firefox_fail |
| 422 'element_animate_test': 'unittest', | 425 'element_animate_test': 'unittest', |
| 423 | 426 |
| 424 // https://github.com/dart-lang/sdk/issues/27579. | 427 // https://github.com/dart-lang/sdk/issues/27579. |
| 425 'element_classes_test': 'fail', | 428 'element_classes_test': 'fail', |
| 426 'element_classes_svg_test': 'fail', | 429 'element_classes_svg_test': 'fail', |
| 427 | 430 |
| 428 // Failure: 'Expected 56 to be in the inclusive range [111, 160].'. | 431 // Failure: 'Expected 56 to be in the inclusive range [111, 160].'. |
| 429 'element_offset_test': 'fail', | 432 'element_offset_test': 'fail', |
| 430 | 433 |
| 431 'element_test': async_unittest, | 434 'element_test': async_unittest, |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 | 909 |
| 907 for (let action of unittest_tests) { | 910 for (let action of unittest_tests) { |
| 908 try { | 911 try { |
| 909 action(); | 912 action(); |
| 910 } catch (e) { | 913 } catch (e) { |
| 911 console.error("Caught error tying to setup test:", e); | 914 console.error("Caught error tying to setup test:", e); |
| 912 } | 915 } |
| 913 } | 916 } |
| 914 }); | 917 }); |
| 915 }); | 918 }); |
| OLD | NEW |