mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Synthetics] Rename synthetics e2e tests (#133161)
This commit is contained in:
parent
1d877b8933
commit
ed9ddc4c85
5 changed files with 17 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
|||
steps:
|
||||
- command: .buildkite/scripts/steps/functional/uptime.sh
|
||||
label: 'Uptime @elastic/synthetics Tests'
|
||||
- command: .buildkite/scripts/steps/functional/synthetics_plugin.sh
|
||||
label: 'Synthetics @elastic/synthetics Tests'
|
||||
agents:
|
||||
queue: ci-group-6
|
||||
depends_on: build
|
|
@ -104,8 +104,8 @@ const uploadPipeline = (pipelineContent) => {
|
|||
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/osquery_cypress.yml'));
|
||||
}
|
||||
|
||||
if (await doAnyChangesMatch([/^x-pack\/plugins\/uptime/])) {
|
||||
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/uptime.yml'));
|
||||
if (await doAnyChangesMatch([/^x-pack\/plugins\/synthetics/])) {
|
||||
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/synthetics_plugin.yml'));
|
||||
}
|
||||
|
||||
if (process.env.GITHUB_PR_LABELS.includes('ci:deploy-cloud')) {
|
||||
|
|
|
@ -7,11 +7,11 @@ source .buildkite/scripts/common/util.sh
|
|||
.buildkite/scripts/bootstrap.sh
|
||||
.buildkite/scripts/download_build_artifacts.sh
|
||||
|
||||
export JOB=kibana-uptime-playwright
|
||||
export JOB=kibana-synthetics-plugin
|
||||
|
||||
echo "--- synthetics @elastic/synthetics Tests"
|
||||
echo "--- Synthetics plugin @elastic/synthetics Tests"
|
||||
|
||||
cd "$XPACK_DIR"
|
||||
|
||||
checks-reporter-with-killswitch "synthetics plugin @elastic/synthetics Tests" \
|
||||
checks-reporter-with-killswitch "Synthetics plugin @elastic/synthetics Tests" \
|
||||
node plugins/synthetics/scripts/e2e.js --kibana-install-dir "$KIBANA_BUILD_LOCATION" ${GREP:+--grep \"${GREP}\"}
|
|
@ -5,15 +5,15 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
export * from './synthetics';
|
||||
export * from './data_view_permissions';
|
||||
// export * from './synthetics'; // TODO: Enable these in a follow up PR
|
||||
// export * from './data_view_permissions'; // TODO: Enable these in a follow up PR
|
||||
export * from './uptime.journey';
|
||||
export * from './step_duration.journey';
|
||||
export * from './alerts';
|
||||
export * from './read_only_user';
|
||||
export * from './monitor_details.journey';
|
||||
export * from './monitor_name.journey';
|
||||
export * from './monitor_management.journey';
|
||||
export * from './monitor_management_enablement.journey';
|
||||
export * from './monitor_details';
|
||||
// export * from './alerts'; // TODO: Enable these in a follow up PR
|
||||
// export * from './read_only_user'; // TODO: Enable these in a follow up PR
|
||||
// export * from './monitor_details.journey'; // TODO: Enable these in a follow up PR
|
||||
// export * from './monitor_name.journey'; // TODO: Enable these in a follow up PR
|
||||
// export * from './monitor_management.journey'; // TODO: Enable these in a follow up PR
|
||||
// export * from './monitor_management_enablement.journey'; // TODO: Enable these in a follow up PR
|
||||
// export * from './monitor_details'; // TODO: Enable these in a follow up PR
|
||||
export * from './locations';
|
||||
|
|
|
@ -31,6 +31,7 @@ import { store, storage, setBasePath } from './state';
|
|||
import { kibanaService } from '../../utils/kibana_service';
|
||||
import { ActionMenu } from './components/common/header/action_menu';
|
||||
|
||||
// added a comment to trigger test
|
||||
const Application = (props: SyntheticsAppProps) => {
|
||||
const {
|
||||
basePath,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue