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', 'unittest', 'require'], | 5 define(['dart_sdk', 'async_helper', 'unittest', 'require'], |
6 function(dart_sdk, async_helper, unittest, require) { | 6 function(dart_sdk, async_helper, unittest, require) { |
7 'use strict'; | 7 'use strict'; |
8 | 8 |
9 async_helper = async_helper.async_helper; | 9 async_helper = async_helper.async_helper; |
10 | 10 |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 | 388 |
389 // TODO(jmesserly): this is in an inconsistent state between our old and | 389 // TODO(jmesserly): this is in an inconsistent state between our old and |
390 // newer SDKs. | 390 // newer SDKs. |
391 'html_escape_test': ['skip'], | 391 'html_escape_test': ['skip'], |
392 | 392 |
393 // TODO(rnystrom): If this test is enabled, karma gets confused and | 393 // TODO(rnystrom): If this test is enabled, karma gets confused and |
394 // disconnects randomly. | 394 // disconnects randomly. |
395 'json_lib_test': skip_fail, | 395 'json_lib_test': skip_fail, |
396 | 396 |
397 'json_utf8_chunk_test': skip_timeout, | 397 'json_utf8_chunk_test': skip_timeout, |
| 398 'latin1_test': skip_timeout, |
398 | 399 |
399 'streamed_conversion_json_encode1_test': skip_timeout, | 400 'streamed_conversion_json_encode1_test': skip_timeout, |
400 'streamed_conversion_json_utf8_decode_test': skip_timeout, | 401 'streamed_conversion_json_utf8_decode_test': skip_timeout, |
401 'streamed_conversion_json_utf8_encode_test': skip_timeout, | 402 'streamed_conversion_json_utf8_encode_test': skip_timeout, |
402 'streamed_conversion_utf8_decode_test': skip_timeout, | 403 'streamed_conversion_utf8_decode_test': skip_timeout, |
403 'streamed_conversion_utf8_encode_test': skip_timeout, | 404 'streamed_conversion_utf8_encode_test': skip_timeout, |
404 'utf85_test': skip_timeout, | 405 'utf85_test': skip_timeout, |
405 }, | 406 }, |
406 | 407 |
407 // TODO(jacobr): enable more of the html tests in unittest once they have | 408 // TODO(jacobr): enable more of the html tests in unittest once they have |
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
871 | 872 |
872 for (let action of unittest_tests) { | 873 for (let action of unittest_tests) { |
873 try { | 874 try { |
874 action(); | 875 action(); |
875 } catch (e) { | 876 } catch (e) { |
876 console.error("Caught error tying to setup test:", e); | 877 console.error("Caught error tying to setup test:", e); |
877 } | 878 } |
878 } | 879 } |
879 }); | 880 }); |
880 }); | 881 }); |
OLD | NEW |