| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 'indexeddb_1_test': async_unittest, | 464 'indexeddb_1_test': async_unittest, |
| 465 'indexeddb_2_test': async_unittest, | 465 'indexeddb_2_test': async_unittest, |
| 466 'indexeddb_3_test': async_unittest, | 466 'indexeddb_3_test': async_unittest, |
| 467 'indexeddb_4_test': async_unittest, | 467 'indexeddb_4_test': async_unittest, |
| 468 'indexeddb_5_test': async_unittest, | 468 'indexeddb_5_test': async_unittest, |
| 469 'input_element_test': 'fail', // was sdk#27578, needs triage | 469 'input_element_test': 'fail', // was sdk#27578, needs triage |
| 470 'interactive_test': async_unittest, | 470 'interactive_test': async_unittest, |
| 471 'isolates_test': async_unittest, | 471 'isolates_test': async_unittest, |
| 472 | 472 |
| 473 'js_interop_1_test': async_unittest, | 473 'js_interop_1_test': async_unittest, |
| 474 'js_test': firefox_fail, | 474 |
| 475 // Failing because accessing "zSomeInvalidName" does not throw. | 475 // Failing because accessing "zSomeInvalidName" does not throw. |
| 476 'js_typed_interop_test': 'fail', | 476 'js_typed_interop_test': 'fail', |
| 477 | 477 |
| 478 // The "typed literal" test fails because the object does not have "_c". | 478 // The "typed literal" test fails because the object does not have "_c". |
| 479 'js_util_test': 'fail', | 479 'js_util_test': 'fail', |
| 480 'keyboard_event_test': async_unittest, | 480 'keyboard_event_test': async_unittest, |
| 481 | 481 |
| 482 'mediasource_test': 'fail', // was sdk#27578, needs triage | 482 'mediasource_test': 'fail', // was sdk#27578, needs triage |
| 483 'media_stream_test': 'fail', // was sdk#27578, needs triage | 483 'media_stream_test': 'fail', // was sdk#27578, needs triage |
| 484 'messageevent_test': 'fail', // was sdk#27578, needs triage | 484 'messageevent_test': 'fail', // was sdk#27578, needs triage |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 | 842 |
| 843 for (let action of unittest_tests) { | 843 for (let action of unittest_tests) { |
| 844 try { | 844 try { |
| 845 action(); | 845 action(); |
| 846 } catch (e) { | 846 } catch (e) { |
| 847 console.error("Caught error tying to setup test:", e); | 847 console.error("Caught error tying to setup test:", e); |
| 848 } | 848 } |
| 849 } | 849 } |
| 850 }); | 850 }); |
| 851 }); | 851 }); |
| OLD | NEW |