kibana/test/api_integration/apis/data_views/integration/index.ts
Matthew Kime 3c04a1f212
[data views] Allow data view rename via rest api (#141869)
* allow rename of data view via rest api
2022-09-27 06:56:46 -05:00

18 lines
653 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 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import { FtrProviderContext } from '../../../ftr_provider_context';
/**
* Test usage of different index patterns APIs in combination
*/
export default function ({ loadTestFile }: FtrProviderContext) {
describe('integration', () => {
loadTestFile(require.resolve('./integration'));
});
}