| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 mocha.grep(assert(extension_manager_tests.TestNames.ChangePages)).run(); | 232 mocha.grep(assert(extension_manager_tests.TestNames.ChangePages)).run(); |
| 233 }); | 233 }); |
| 234 | 234 |
| 235 TEST_F('CrExtensionsBrowserTestWithIdQueryParam', | 235 TEST_F('CrExtensionsBrowserTestWithIdQueryParam', |
| 236 'ExtensionManagerNavigationToDetailsTest', function() { | 236 'ExtensionManagerNavigationToDetailsTest', function() { |
| 237 extension_manager_tests.registerTests(); | 237 extension_manager_tests.registerTests(); |
| 238 mocha.grep( | 238 mocha.grep( |
| 239 assert(extension_manager_tests.TestNames.UrlNavigationToDetails)).run(); | 239 assert(extension_manager_tests.TestNames.UrlNavigationToDetails)).run(); |
| 240 }); | 240 }); |
| 241 | 241 |
| 242 TEST_F('CrExtensionsBrowserTest', 'ExtensionManagerUpdateItemDataTest', |
| 243 function() { |
| 244 extension_manager_tests.registerTests(); |
| 245 mocha.grep(assert(extension_manager_tests.TestNames.UpdateItemData)).run(); |
| 246 }); |
| 247 |
| 242 //////////////////////////////////////////////////////////////////////////////// | 248 //////////////////////////////////////////////////////////////////////////////// |
| 243 // Extension Keyboard Shortcuts Tests | 249 // Extension Keyboard Shortcuts Tests |
| 244 | 250 |
| 245 TEST_F('CrExtensionsBrowserTest', 'ExtensionKeyboardShortcutsLayoutTest', | 251 TEST_F('CrExtensionsBrowserTest', 'ExtensionKeyboardShortcutsLayoutTest', |
| 246 function() { | 252 function() { |
| 247 extension_keyboard_shortcut_tests.registerTests(); | 253 extension_keyboard_shortcut_tests.registerTests(); |
| 248 mocha.grep(assert(extension_keyboard_shortcut_tests.TestNames.Layout)).run(); | 254 mocha.grep(assert(extension_keyboard_shortcut_tests.TestNames.Layout)).run(); |
| 249 }); | 255 }); |
| 250 | 256 |
| 251 TEST_F('CrExtensionsBrowserTest', 'ExtensionShortcutUtilTest', function() { | 257 TEST_F('CrExtensionsBrowserTest', 'ExtensionShortcutUtilTest', function() { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 }); | 306 }); |
| 301 | 307 |
| 302 //////////////////////////////////////////////////////////////////////////////// | 308 //////////////////////////////////////////////////////////////////////////////// |
| 303 // Extension Code Section Tests | 309 // Extension Code Section Tests |
| 304 | 310 |
| 305 TEST_F('CrExtensionsBrowserTest', 'ExtensionCodeSectionLayoutTest', | 311 TEST_F('CrExtensionsBrowserTest', 'ExtensionCodeSectionLayoutTest', |
| 306 function() { | 312 function() { |
| 307 extension_code_section_tests.registerTests(); | 313 extension_code_section_tests.registerTests(); |
| 308 mocha.grep(assert(extension_code_section_tests.TestNames.Layout)).run(); | 314 mocha.grep(assert(extension_code_section_tests.TestNames.Layout)).run(); |
| 309 }); | 315 }); |
| OLD | NEW |