mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Optimize security entry bundle (#135586)
* shuffle imports * more import shuffling * update limits.yml * Undo unnecessary changes
This commit is contained in:
parent
27f3bf7a13
commit
1da2c23773
5 changed files with 4 additions and 5 deletions
|
@ -52,7 +52,7 @@ pageLoadAssetSize:
|
|||
savedObjectsTagging: 59482
|
||||
savedObjectsTaggingOss: 20590
|
||||
searchprofiler: 67080
|
||||
security: 115240
|
||||
security: 65433
|
||||
snapshotRestore: 79032
|
||||
spaces: 57868
|
||||
telemetry: 51957
|
||||
|
|
|
@ -16,7 +16,7 @@ import { UserAPIClient } from '../management';
|
|||
import { securityMock } from '../mocks';
|
||||
import { accountManagementApp } from './account_management_app';
|
||||
import * as AccountManagementPageImports from './account_management_page';
|
||||
import { UserProfileAPIClient } from './user_profile';
|
||||
import { UserProfileAPIClient } from './user_profile/user_profile_api_client';
|
||||
|
||||
const AccountManagementPageMock = jest
|
||||
.spyOn(AccountManagementPageImports, 'AccountManagementPage')
|
||||
|
|
|
@ -16,8 +16,8 @@ import { UserAPIClient } from '../management';
|
|||
import { securityMock } from '../mocks';
|
||||
import { Providers } from './account_management_app';
|
||||
import { AccountManagementPage } from './account_management_page';
|
||||
import { UserProfileAPIClient } from './user_profile';
|
||||
import * as UserProfileImports from './user_profile/user_profile';
|
||||
import { UserProfileAPIClient } from './user_profile/user_profile_api_client';
|
||||
|
||||
const UserProfileMock = jest.spyOn(UserProfileImports, 'UserProfile');
|
||||
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
export { accountManagementApp } from './account_management_app';
|
||||
export { UserProfileAPIClient } from './user_profile';
|
||||
export { UserProfileAPIClient } from './user_profile/user_profile_api_client';
|
||||
|
|
|
@ -8,4 +8,3 @@
|
|||
export { UserProfile } from './user_profile';
|
||||
|
||||
export type { UserProfileProps, UserProfileFormValues } from './user_profile';
|
||||
export { UserProfileAPIClient } from './user_profile_api_client';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue