mirror of
https://github.com/elastic/kibana.git
synced 2025-06-29 03:24:45 -04:00
* Create test configs for Kibana running dedicated processes * Fix TS issues * Fix tests relying on backend responses * Only run dedicated task process on spaces_and_security suite group2 * Fix ftr_configs * Use dedicated task runner by default * fix typo * Remove exclusive test suite Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
17 lines
525 B
TypeScript
17 lines
525 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; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
import { createTestConfig } from '../common/config';
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default createTestConfig('basic', {
|
|
disabledPlugins: [],
|
|
license: 'basic',
|
|
ssl: true,
|
|
enableActionsProxy: false,
|
|
useDedicatedTaskRunner: true,
|
|
});
|