| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * Test fixture for loading all our JS files. | 6 * Test fixture for loading all our JS files. |
| 7 * @constructor | 7 * @constructor |
| 8 * @extends {testing.Test} | 8 * @extends {testing.Test} |
| 9 */ | 9 */ |
| 10 function AllJsLoadTest () { | 10 function AllJsLoadTest () { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'wcs.js', | 66 'wcs.js', |
| 67 'wcs_loader.js', | 67 'wcs_loader.js', |
| 68 'wcs_sandbox_content.js', | 68 'wcs_sandbox_content.js', |
| 69 'wcs_sandbox_container.js', | 69 'wcs_sandbox_container.js', |
| 70 'xhr.js', | 70 'xhr.js', |
| 71 'xhr_proxy.js', | 71 'xhr_proxy.js', |
| 72 ], | 72 ], |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 // Basic test to verify that all the JS files load without console errors. | 75 // Basic test to verify that all the JS files load without console errors. |
| 76 TEST_F('AllJsLoadTest', 'TestNoConsoleErrors', function() { | 76 // Currently disabled. crbug.com/390814 |
| 77 TEST_F('AllJsLoadTest', 'DISABLED_TestNoConsoleErrors', function() { |
| 77 assertTrue(true); | 78 assertTrue(true); |
| 78 }); | 79 }); |
| OLD | NEW |