Chromium Code Reviews| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 183 extension_detail_view_tests.registerTests(); | 183 extension_detail_view_tests.registerTests(); |
| 184 mocha.grep( | 184 mocha.grep( |
| 185 assert(extension_detail_view_tests.TestNames.ClickableElements)).run(); | 185 assert(extension_detail_view_tests.TestNames.ClickableElements)).run(); |
| 186 }); | 186 }); |
| 187 | 187 |
| 188 //////////////////////////////////////////////////////////////////////////////// | 188 //////////////////////////////////////////////////////////////////////////////// |
| 189 // Extension Item List Tests | 189 // Extension Item List Tests |
| 190 | 190 |
| 191 TEST_F('CrExtensionsBrowserTest', 'ExtensionItemList', function() { | 191 TEST_F('CrExtensionsBrowserTest', 'ExtensionItemList', function() { |
| 192 extension_item_list_tests.registerTests(); | 192 extension_item_list_tests.registerTests(); |
| 193 mocha.grep( | 193 mocha.run(); |
| 194 assert(extension_item_list_tests.TestNames.ItemListFiltering)).run(); | |
|
Devlin
2017/07/10 20:23:53
Way back when we first started, Dan was really wor
scottchen
2017/07/10 22:13:40
Hmm, I just noticed the tests are registered a bit
dpapad
2017/07/11 01:36:56
Timing out tests is still a concern. Adding too ma
scottchen
2017/07/11 18:08:17
Acknowledged. I moved them each to their own TEST_
| |
| 195 }); | 194 }); |
| 196 | 195 |
| 197 //////////////////////////////////////////////////////////////////////////////// | 196 //////////////////////////////////////////////////////////////////////////////// |
| 198 // Extension Load Error Tests | 197 // Extension Load Error Tests |
| 199 | 198 |
| 200 TEST_F('CrExtensionsBrowserTest', 'ExtensionLoadErrorInteractionTest', | 199 TEST_F('CrExtensionsBrowserTest', 'ExtensionLoadErrorInteractionTest', |
| 201 function() { | 200 function() { |
| 202 extension_load_error_tests.registerTests(); | 201 extension_load_error_tests.registerTests(); |
| 203 mocha.grep(assert(extension_load_error_tests.TestNames.Interaction)).run(); | 202 mocha.grep(assert(extension_load_error_tests.TestNames.Interaction)).run(); |
| 204 }); | 203 }); |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 371 assert(extension_navigation_helper_tests.TestNames.Conversions)).run(); | 370 assert(extension_navigation_helper_tests.TestNames.Conversions)).run(); |
| 372 }); | 371 }); |
| 373 | 372 |
| 374 TEST_F('CrExtensionsNavigationHelperBrowserTest', | 373 TEST_F('CrExtensionsNavigationHelperBrowserTest', |
| 375 'ExtensionNavigationHelperPushAndReplaceStateTest', function() { | 374 'ExtensionNavigationHelperPushAndReplaceStateTest', function() { |
| 376 extension_navigation_helper_tests.registerTests(); | 375 extension_navigation_helper_tests.registerTests(); |
| 377 mocha.grep( | 376 mocha.grep( |
| 378 assert(extension_navigation_helper_tests.TestNames.PushAndReplaceState)) | 377 assert(extension_navigation_helper_tests.TestNames.PushAndReplaceState)) |
| 379 .run(); | 378 .run(); |
| 380 }); | 379 }); |
| OLD | NEW |