Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Side by Side Diff: pkg/dev_compiler/test/browser/language_tests.js

Issue 2598853002: blob_constructor_test is passing now. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 'streamed_conversion_json_utf8_encode_test': skip_timeout, 418 'streamed_conversion_json_utf8_encode_test': skip_timeout,
419 'streamed_conversion_utf8_decode_test': skip_timeout, 419 'streamed_conversion_utf8_decode_test': skip_timeout,
420 'streamed_conversion_utf8_encode_test': skip_timeout, 420 'streamed_conversion_utf8_encode_test': skip_timeout,
421 'utf85_test': skip_timeout, 421 'utf85_test': skip_timeout,
422 }, 422 },
423 423
424 'lib/html': { 424 'lib/html': {
425 'async_spawnuri_test': async_unittest, 425 'async_spawnuri_test': async_unittest,
426 'async_test': async_unittest, 426 'async_test': async_unittest,
427 'audiocontext_test': is.chrome('<=54') ? fail : pass, // was sdk#27578, ne eds triage 427 'audiocontext_test': is.chrome('<=54') ? fail : pass, // was sdk#27578, ne eds triage
428 'blob_constructor_test': 'fail', // was sdk#27578, needs triage
429 'canvas_test': ['unittest'], 428 'canvas_test': ['unittest'],
430 'canvasrenderingcontext2d_test': ['unittest'], 429 'canvasrenderingcontext2d_test': ['unittest'],
431 'cross_domain_iframe_test': async_unittest, 430 'cross_domain_iframe_test': async_unittest,
432 'cssstyledeclaration_test': async_unittest, 431 'cssstyledeclaration_test': async_unittest,
433 'css_test': async_unittest, 432 'css_test': async_unittest,
434 433
435 // 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
436 // for a stylesheet and the page has none. 435 // for a stylesheet and the page has none.
437 'css_rule_list_test': 'fail', 436 'css_rule_list_test': 'fail',
438 'custom_element_method_clash_test': async_unittest, 437 'custom_element_method_clash_test': async_unittest,
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 842
844 for (let action of unittest_tests) { 843 for (let action of unittest_tests) {
845 try { 844 try {
846 action(); 845 action();
847 } catch (e) { 846 } catch (e) {
848 console.error("Caught error tying to setup test:", e); 847 console.error("Caught error tying to setup test:", e);
849 } 848 }
850 } 849 }
851 }); 850 });
852 }); 851 });
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698