| 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 'streamed_conversion_json_utf8_decode_test': skip_timeout, | 416 'streamed_conversion_json_utf8_decode_test': skip_timeout, |
| 417 'streamed_conversion_json_utf8_encode_test': skip_timeout, | 417 'streamed_conversion_json_utf8_encode_test': skip_timeout, |
| 418 'streamed_conversion_utf8_decode_test': skip_timeout, | 418 'streamed_conversion_utf8_decode_test': skip_timeout, |
| 419 'streamed_conversion_utf8_encode_test': skip_timeout, | 419 'streamed_conversion_utf8_encode_test': skip_timeout, |
| 420 'utf85_test': skip_timeout, | 420 'utf85_test': skip_timeout, |
| 421 }, | 421 }, |
| 422 | 422 |
| 423 'lib/html': { | 423 'lib/html': { |
| 424 'async_spawnuri_test': async_unittest, | 424 'async_spawnuri_test': async_unittest, |
| 425 'async_test': async_unittest, | 425 'async_test': async_unittest, |
| 426 'audiocontext_test': is.chrome('<=55') ? fail : pass, // was sdk#27578, ne
eds triage | 426 'audiocontext_test': is.chrome('<=54') ? fail : pass, // was sdk#27578, ne
eds triage |
| 427 'blob_constructor_test': 'fail', // was sdk#27578, needs triage | 427 'blob_constructor_test': 'fail', // was sdk#27578, needs triage |
| 428 'canvas_test': ['unittest'], | 428 'canvas_test': ['unittest'], |
| 429 'canvasrenderingcontext2d_test': ['unittest'], | 429 'canvasrenderingcontext2d_test': ['unittest'], |
| 430 'cross_domain_iframe_test': async_unittest, | 430 'cross_domain_iframe_test': async_unittest, |
| 431 'cssstyledeclaration_test': async_unittest, | 431 'cssstyledeclaration_test': async_unittest, |
| 432 'css_test': async_unittest, | 432 'css_test': async_unittest, |
| 433 | 433 |
| 434 // This is failing with a range error, I'm guessing because it's looking | 434 // This is failing with a range error, I'm guessing because it's looking |
| 435 // for a stylesheet and the page has none. | 435 // for a stylesheet and the page has none. |
| 436 'css_rule_list_test': 'fail', | 436 'css_rule_list_test': 'fail', |
| (...skipping 405 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 |