kibana/test/functional/apps/home/_add_data.ts
Josh Dover 96c89e0fca
[Unified Integrations] Remove and cleanup add data views (#115424)
Co-authored-by: cchaos <caroline.horn@elastic.co>
Co-authored-by: Dave Snider <dave.snider@gmail.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Thomas Neirynck <thomas@elastic.co>
2021-10-19 10:43:51 -04:00

20 lines
907 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';
export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['common', 'header', 'home', 'dashboard']);
describe('add data tutorials', function describeIndexTests() {
it('directory should redirect to integrations app', async () => {
await PageObjects.common.navigateToUrl('home', 'tutorial_directory', { useActualUrl: true });
await PageObjects.common.waitUntilUrlIncludes('/app/integrations');
});
});
}