mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Fix integration policy e2e test
* Skip integration e2e
* Use type-only import for synthtrace package
* Fix synthrace script
* Revert "Skip integration e2e"
This reverts commit a5992d5ba9
.
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Søren Louv-Jansen <soren.louv@elastic.co>
Co-authored-by: Dario Gieselaar <dario.gieselaar@elastic.co>
16 lines
831 B
JavaScript
16 lines
831 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
|
|
* 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.
|
|
*/
|
|
|
|
require('../src/setup_node_env');
|
|
|
|
// We have to import directly from package since scenarios and worker.js are imported dynamically,
|
|
// If we import the package (require('@elastic/apm-synthtrace')) the program will be executed on the compiled files, and thus we need to
|
|
// compile scenarios with `yarn kbn bootstrap` every time scenario changes.
|
|
|
|
// eslint-disable-next-line @kbn/imports/uniform_imports
|
|
require('../packages/elastic-apm-synthtrace/src/cli').runSynthtrace();
|