Skip to content

Commit

Permalink
[asset_manager] Enable skipped tests (#179323)
Browse files Browse the repository at this point in the history
  • Loading branch information
miltonhultgren authored Mar 25, 2024
1 parent 0c9bfb8 commit dc56138
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ export default function ({ getService }: FtrProviderContext) {
const synthtraceApm = getService('apmSynthtraceEsClient');
const synthtraceInfra = getService('infraSynthtraceEsClient');

// FLAKY: https://github.com/elastic/kibana/issues/176968
describe.skip('GET /assets', () => {
describe('GET /assets', () => {
const from = new Date(Date.now() - 1000 * 60 * 2).toISOString();
const to = new Date().toISOString();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ export default function ({ getService }: FtrProviderContext) {
const supertest = getService('supertest');
const synthtrace = getService('apmSynthtraceEsClient');

// FLAKY: https://github.com/elastic/kibana/issues/176952
describe.skip('GET /assets/services', () => {
describe('GET /assets/services', () => {
beforeEach(async () => {
await synthtrace.clean();
});
Expand Down

0 comments on commit dc56138

Please sign in to comment.