mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 03:01:21 -04:00
* Starting conversion to permissions from userCanCrud
* Migrating userCanCrud to context
* Fixing tests
* Fix type error
* Removing missed userCanCrud
* Fixing tests and addressing permissions.all feedback
* Fixing test
* Adding deletion sub feature priv
* Fixing type errors
* Fixing tests and adding more granular permissions
* Trying to get plugin tests to work
* Removing unnecessary tests
* First pass at fixing tests
* Moving createUICapabilities to a normal function
* Adding more tests for permissions
* Fixing tests
* Fixing and adding more tests
* Addressing feedback and fixing tests
* Reverting permissions.all changes except delete
* Revert "Reverting permissions.all changes except delete"
This reverts commit 609c150b7d
.
* Fixing test
* Adjusting permissions for add to new or existing case
* Switching a few all permissions to create and read
* check permisions inside of actions menu
* Addressing initial feedback
* Adding functional tests for deletion
* Changing deletion text
* Addressing feedback and fixing tests
* Fixing deeplinks to allow create when no delete
* Addressing feedback
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
33 lines
1.5 KiB
JavaScript
33 lines
1.5 KiB
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
export default function ({ loadTestFile }) {
|
|
describe('SecuritySolution Endpoints', () => {
|
|
loadTestFile(require.resolve('./authentications'));
|
|
loadTestFile(require.resolve('./events'));
|
|
loadTestFile(require.resolve('./hosts'));
|
|
loadTestFile(require.resolve('./host_details'));
|
|
loadTestFile(require.resolve('./kpi_network'));
|
|
loadTestFile(require.resolve('./kpi_hosts'));
|
|
loadTestFile(require.resolve('./matrix_dns_histogram'));
|
|
loadTestFile(require.resolve('./network_details'));
|
|
loadTestFile(require.resolve('./network_dns'));
|
|
loadTestFile(require.resolve('./network_top_n_flow'));
|
|
loadTestFile(require.resolve('./overview_host'));
|
|
loadTestFile(require.resolve('./overview_network'));
|
|
loadTestFile(require.resolve('./saved_objects/notes'));
|
|
loadTestFile(require.resolve('./saved_objects/pinned_events'));
|
|
loadTestFile(require.resolve('./saved_objects/timeline'));
|
|
loadTestFile(require.resolve('./sources'));
|
|
loadTestFile(require.resolve('./timeline'));
|
|
loadTestFile(require.resolve('./timeline_migrations'));
|
|
loadTestFile(require.resolve('./timeline_details'));
|
|
loadTestFile(require.resolve('./uncommon_processes'));
|
|
loadTestFile(require.resolve('./users'));
|
|
loadTestFile(require.resolve('./tls'));
|
|
});
|
|
}
|