kibana/x-pack/test/accessibility/config.ts
Rashmi Kulkarni cccb66e57f
XPack-Accessibility- Grok Debugger Test (#62104)
* accessibility tests for dashboard panel

* added back the skipped test as it is still required to pass through th ea11ySnapshot

* accessibility grok debugger test - currently skipped due to aria label violation

* deleting a file which was added accidentally

* deleting a file which was added accidentally

* incorporated feedback split tests into seperate tests and skipped the test as there is a aria violation

* commented out the grok debugger config file entry

* re-added the test in config file

* updated the tests to match 

...the actions they are performing

* fixed syntax

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-04-03 08:33:17 -07:00

24 lines
810 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;
* you may not use this file except in compliance with the Elastic License.
*/
import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
import { services } from './services';
import { pageObjects } from './page_objects';
export default async function({ readConfigFile }: FtrConfigProviderContext) {
const functionalConfig = await readConfigFile(require.resolve('../functional/config'));
return {
...functionalConfig.getAll(),
testFiles: [require.resolve('./apps/login_page'), require.resolve('./apps/grok_debugger')],
pageObjects,
services,
junit: {
reportName: 'X-Pack Accessibility Tests',
},
};
}