mirror of
https://github.com/elastic/kibana.git
synced 2025-06-29 03:24:45 -04:00
## Summary  At the moment, our package generator creates all packages with the type `shared-common`. This means that we cannot enforce boundaries between server-side-only code and the browser, and vice-versa. - [x] I started fixing `packages/core/*` - [x] It took me to fixing `src/core/` type to be identified by the `plugin` pattern (`public` and `server` directories) vs. a package (either common, or single-scoped) - [x] Unsurprisingly, this extended to packages importing core packages hitting the boundaries eslint rules. And other packages importing the latter. - [x] Also a bunch of `common` logic that shouldn't be so _common_ 🙃 ### For maintainers - [x] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
21 lines
991 B
TypeScript
21 lines
991 B
TypeScript
/*
|
|
* 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.
|
|
*/
|
|
import { FtrProviderContext } from '@kbn/test-suites-src/functional/ftr_provider_context';
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default ({ loadTestFile }: FtrProviderContext) => {
|
|
describe('Triggers Actions UI Example', function () {
|
|
loadTestFile(require.resolve('./rule_status_dropdown'));
|
|
loadTestFile(require.resolve('./rule_tag_filter'));
|
|
loadTestFile(require.resolve('./rule_status_filter'));
|
|
loadTestFile(require.resolve('./rule_tag_badge'));
|
|
loadTestFile(require.resolve('./rule_event_log_list'));
|
|
loadTestFile(require.resolve('./global_rule_event_log_list'));
|
|
loadTestFile(require.resolve('./rules_list'));
|
|
loadTestFile(require.resolve('./rules_settings_link'));
|
|
});
|
|
};
|