| Index: chrome/test/data/webui/settings/empty_browsertest.js
|
| diff --git a/chrome/test/data/webui/settings/empty_browsertest.js b/chrome/test/data/webui/settings/empty_browsertest.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a8fa5c19471953a1eb50ce33ba0ddb7e122ce49a
|
| --- /dev/null
|
| +++ b/chrome/test/data/webui/settings/empty_browsertest.js
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +/** @fileoverview Suite of tests for the Settings main page. */
|
| +
|
| +GEN_INCLUDE(['settings_page_browsertest.js']);
|
| +
|
| +/**
|
| + * @constructor
|
| + * @extends {SettingsPageBrowserTest}
|
| +*/
|
| +function SettingsEmptyBrowserTest() {}
|
| +
|
| +SettingsEmptyBrowserTest.prototype = {
|
| + __proto__: SettingsPageBrowserTest.prototype
|
| +};
|
| +
|
| +TEST_F('SettingsEmptyBrowserTest', 'Main', function() {
|
| + // Run all registered tests.
|
| + mocha.run();
|
| +});
|
|
|