mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Integration tests should go into the corresponding directory under `test` and should use the appropriate testing framework that is designed for long-running tests like those. Tests under __tests__ directories should be fast-running unit tests only.
10 lines
384 B
JavaScript
10 lines
384 B
JavaScript
export default function ({ loadTestFile }) {
|
|
describe('apis', () => {
|
|
loadTestFile(require.resolve('./elasticsearch'));
|
|
loadTestFile(require.resolve('./index_patterns'));
|
|
loadTestFile(require.resolve('./scripts'));
|
|
loadTestFile(require.resolve('./search'));
|
|
loadTestFile(require.resolve('./shorten'));
|
|
loadTestFile(require.resolve('./suggestions'));
|
|
});
|
|
}
|