kibana/x-pack/test/visual_regression/config.js
Nathan Reese 1d07604ac8
[Maps] create visual regression test for vector styling point with icons (#39363)
* [Maps] create functional test for vector styling point with icons

* clena up

* use full screen to hide kibana chrome

* collapse legend to limit UI surface area
2019-07-09 12:16:26 -06:00

29 lines
853 B
JavaScript

/*
* 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 { services as ossVisualRegressionServices } from '../../../test/visual_regression/services';
export default async function ({ readConfigFile }) {
const functionalConfig = await readConfigFile(require.resolve('../functional/config'));
return {
...functionalConfig.getAll(),
testFiles: [
require.resolve('./tests/login_page'),
require.resolve('./tests/maps'),
],
services: {
...functionalConfig.get('services'),
visualTesting: ossVisualRegressionServices.visualTesting,
},
junit: {
reportName: 'X-Pack Visual Regression Tests',
},
};
}