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

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

Issue 2739103003: Fix test expectation (Closed)
Patch Set: Created 3 years, 9 months 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 'element_animate_test': 'unittest', 416 'element_animate_test': 'unittest',
417 417
418 // https://github.com/dart-lang/sdk/issues/27579. 418 // https://github.com/dart-lang/sdk/issues/27579.
419 'element_classes_test': 'fail', 419 'element_classes_test': 'fail',
420 'element_classes_svg_test': 'fail', 420 'element_classes_svg_test': 'fail',
421 421
422 // Failure: 'Expected 56 to be in the inclusive range [111, 160].'. 422 // Failure: 'Expected 56 to be in the inclusive range [111, 160].'.
423 'element_offset_test': 'fail', 423 'element_offset_test': 'fail',
424 424
425 'element_test': async_unittest, 425 'element_test': async_unittest,
426 'element_types_test': firefox_fail, 426 // This may no longer be a valid test?
427 'element_types_test': is.chrome('<=56') ? pass : fail,
427 'event_customevent_test': async_unittest, 428 'event_customevent_test': async_unittest,
428 'events_test': async_unittest, 429 'events_test': async_unittest,
429 'fileapi_test': async_unittest, 430 'fileapi_test': async_unittest,
430 'filereader_test': async_unittest, 431 'filereader_test': async_unittest,
431 'fontface_loaded_test': async_unittest, 432 'fontface_loaded_test': async_unittest,
432 'fontface_test': firefox_fail, 433 'fontface_test': firefox_fail,
433 'form_data_test': async_unittest, 434 'form_data_test': async_unittest,
434 'history_test': async_unittest, 435 'history_test': async_unittest,
435 'indexeddb_1_test': async_unittest, 436 'indexeddb_1_test': async_unittest,
436 'indexeddb_2_test': async_unittest, 437 'indexeddb_2_test': async_unittest,
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 893
893 for (let action of unittest_tests) { 894 for (let action of unittest_tests) {
894 try { 895 try {
895 action(); 896 action();
896 } catch (e) { 897 } catch (e) {
897 console.error("Caught error tying to setup test:", e); 898 console.error("Caught error tying to setup test:", e);
898 } 899 }
899 } 900 }
900 }); 901 });
901 }); 902 });
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