mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* Retry the entire screenshotStitcher call * Go back to a single run * Only retry for this specific error. Post more information including the git issue link
17 lines
827 B
JavaScript
17 lines
827 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.
|
|
*/
|
|
|
|
require('@kbn/plugin-helpers').babelRegister();
|
|
require('@kbn/test').runTestsCli([
|
|
require.resolve('../test/reporting/configs/chromium_api.js'),
|
|
require.resolve('../test/reporting/configs/chromium_functional.js'),
|
|
require.resolve('../test/reporting/configs/phantom_api.js'),
|
|
require.resolve('../test/reporting/configs/phantom_functional.js'),
|
|
require.resolve('../test/functional/config.js'),
|
|
require.resolve('../test/api_integration/config.js'),
|
|
require.resolve('../test/saml_api_integration/config.js'),
|
|
require.resolve('../test/rbac_api_integration/config.js'),
|
|
]);
|