OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 /** @fileoverview Suite of tests for the Settings main page. */ |
| 6 |
| 7 GEN_INCLUDE(['settings_page_browsertest.js']); |
| 8 |
| 9 /** |
| 10 * @constructor |
| 11 * @extends {SettingsPageBrowserTest} |
| 12 */ |
| 13 function SettingsEmptyBrowserTest() {} |
| 14 |
| 15 SettingsEmptyBrowserTest.prototype = { |
| 16 __proto__: SettingsPageBrowserTest.prototype |
| 17 }; |
| 18 |
| 19 TEST_F('SettingsEmptyBrowserTest', 'Main', function() { |
| 20 // Run all registered tests. |
| 21 mocha.run(); |
| 22 }); |
OLD | NEW |