Skip to content

Commit

Permalink
[APM] Unskipping tests (elastic#177587)
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes authored Mar 4, 2024
1 parent e86703e commit ebbd6e9
Show file tree
Hide file tree
Showing 95 changed files with 1,362 additions and 1,419 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {
});

registry.when('Agent explorer', { config: 'basic', archives: [] }, () => {
// FAILING VERSION BUMP: https://github.com/elastic/kibana/issues/172753
describe.skip('when data is loaded', () => {
describe('when data is loaded', () => {
before(async () => {
const serviceOtelJava = apm
.service({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {
const logger = getService('log');

const synthtraceEsClient = getService('synthtraceEsClient');
// FLAKY: https://github.com/elastic/kibana/issues/176949
registry.when.skip(
registry.when(
'fetching service anomalies with a trial license',
{ config: 'trial', archives: [] },
() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {
after(() => synthtraceEsClient.clean());

// FLAKY: https://github.com/elastic/kibana/issues/176948
describe.skip('create rule without kql filter', () => {
describe('create rule without kql filter', () => {
let ruleId: string;
let alerts: ApmAlertFields[];
let actionId: string;
Expand Down Expand Up @@ -251,7 +251,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {
});

// FLAKY: https://github.com/elastic/kibana/issues/176964
describe.skip('create rule with kql filter for opbeans-php', () => {
describe('create rule with kql filter for opbeans-php', () => {
let ruleId: string;

before(async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {

registry.when(`with data loaded`, { config: 'basic', archives: [] }, () => {
// FLAKY: https://github.com/elastic/kibana/issues/172769
describe.skip('error_count', () => {
describe('error_count', () => {
beforeEach(async () => {
await generateErrorData({ serviceName: 'synth-go', start, end, synthtraceEsClient });
await generateErrorData({ serviceName: 'synth-java', start, end, synthtraceEsClient });
Expand Down Expand Up @@ -306,7 +306,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {

registry.when(`with data loaded and using KQL filter`, { config: 'basic', archives: [] }, () => {
// FLAKY: https://github.com/elastic/kibana/issues/176975
describe.skip('error_count', () => {
describe('error_count', () => {
before(async () => {
await generateErrorData({ serviceName: 'synth-go', start, end, synthtraceEsClient });
await generateErrorData({ serviceName: 'synth-java', start, end, synthtraceEsClient });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {

registry.when(`with data loaded`, { config: 'basic', archives: [] }, () => {
// FLAKY: https://github.com/elastic/kibana/issues/176977
describe.skip('transaction_error_rate', () => {
describe('transaction_error_rate', () => {
before(async () => {
await generateErrorData({ serviceName: 'synth-go', start, end, synthtraceEsClient });
await generateErrorData({ serviceName: 'synth-java', start, end, synthtraceEsClient });
Expand Down Expand Up @@ -330,7 +330,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {

registry.when(`with data loaded and using KQL filter`, { config: 'basic', archives: [] }, () => {
// FLAKY: https://github.com/elastic/kibana/issues/176983
describe.skip('transaction_error_rate', () => {
describe('transaction_error_rate', () => {
before(async () => {
await generateErrorData({ serviceName: 'synth-go', start, end, synthtraceEsClient });
await generateErrorData({ serviceName: 'synth-java', start, end, synthtraceEsClient });
Expand Down
Loading

0 comments on commit ebbd6e9

Please sign in to comment.