Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Enables APM collection #81731

Merged
merged 16 commits into from
Dec 3, 2020
Merged
1 change: 1 addition & 0 deletions src/dev/ci_setup/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export FORCE_COLOR=1
### APM tracking
###
export ELASTIC_APM_ENVIRONMENT=ci
export ELASTIC_APM_ACTIVE=true

###
### check that we seem to be in a kibana project
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
await (await testSubjects.find('resolver:graph-controls:zoom-in')).click();
});

it('Check Related Events for event.file Node', async () => {
// SKIP: https://github.com/elastic/kibana/issues/83446
tylersmalley marked this conversation as resolved.
Show resolved Hide resolved
it.skip('Check Related Events for event.file Node', async () => {
const expectedData = [
'17 authentication',
'1 registry',
Expand All @@ -206,7 +207,8 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});
});

describe('Resolver Tree events', function () {
// SKIP: https://github.com/elastic/kibana/issues/83446
describe.skip('Resolver Tree events', function () {
const expectedData = [
'17 authentication',
'1 registry',
Expand Down