[Synthetics] Rename synthetics e2e tests (#133161)

This commit is contained in:
Shahzad 2022-05-31 15:36:45 +02:00 committed by GitHub
parent 1d877b8933
commit ed9ddc4c85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 16 deletions

View file

@ -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

View file

@ -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')) {

View file

@ -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}\"}

View file

@ -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';

View file

@ -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,