kibana/test/api_integration/apis/index.js
Court Ewing a7fbce659e test: move es proxy tests to api_integration (#14406)
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.
2017-10-11 13:59:54 -04:00

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'));
});
}