OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 /** @fileoverview Runs the Polymer Settings tests. */ | 5 /** @fileoverview Runs the Polymer Settings tests. */ |
6 | 6 |
7 /** @const {string} Path to source root. */ | 7 /** @const {string} Path to source root. */ |
8 var ROOT_PATH = '../../../../../'; | 8 var ROOT_PATH = '../../../../../'; |
9 | 9 |
10 // Polymer BrowserTest fixture. | 10 // Polymer BrowserTest fixture. |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 | 326 |
327 browsePreload: 'chrome://md-settings/on_startup_page/startup_urls_page.html', | 327 browsePreload: 'chrome://md-settings/on_startup_page/startup_urls_page.html', |
328 | 328 |
329 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 329 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
330 ROOT_PATH + 'ui/webui/resources/js/promise_resolver.js', | 330 ROOT_PATH + 'ui/webui/resources/js/promise_resolver.js', |
331 'test_browser_proxy.js', | 331 'test_browser_proxy.js', |
332 'startup_urls_page_test.js', | 332 'startup_urls_page_test.js', |
333 ]), | 333 ]), |
334 }; | 334 }; |
335 | 335 |
336 TEST_F('CrSettingsStartupUrlsPageTest', 'Validity', function() { | 336 TEST_F('CrSettingsStartupUrlsPageTest', 'StartupUrlsPage', function() { |
337 mocha.run(); | 337 mocha.run(); |
338 }); | 338 }); |
OLD | NEW |