mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Synthetics] unskip flaky test (#147859)
## Summary Resolves https://github.com/elastic/kibana/issues/146014 Unskip flaky test. https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/1664
This commit is contained in:
parent
b184f0615e
commit
b3d7ecb68d
2 changed files with 7 additions and 8 deletions
|
@ -17,8 +17,7 @@ import { FtrProviderContext } from '../../ftr_provider_context';
|
|||
import { getFixtureJson } from '../uptime/rest/helper/get_fixture_json';
|
||||
|
||||
export default function ({ getService }: FtrProviderContext) {
|
||||
// Failing: See https://github.com/elastic/kibana/issues/146014
|
||||
describe.skip('GetMonitorsOverview', function () {
|
||||
describe('GetMonitorsOverview', function () {
|
||||
this.tags('skipCloud');
|
||||
|
||||
const supertest = getService('supertest');
|
||||
|
@ -170,9 +169,9 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
);
|
||||
savedMonitors = savedResponse;
|
||||
|
||||
const apiResponse = await supertest.get(
|
||||
`/s/${SPACE_ID}${SYNTHETICS_API_URLS.SYNTHETICS_OVERVIEW}`
|
||||
);
|
||||
const apiResponse = await supertest
|
||||
.get(`/s/${SPACE_ID}${SYNTHETICS_API_URLS.SYNTHETICS_OVERVIEW}`)
|
||||
.query({ sortField: 'status' });
|
||||
expect(apiResponse.body.monitors).eql([
|
||||
{
|
||||
id: savedMonitors[0].attributes[ConfigKey.MONITOR_QUERY_ID],
|
||||
|
@ -180,7 +179,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
name: 'test monitor a',
|
||||
location: {
|
||||
id: 'eu-west-01',
|
||||
label: 'Europe West',
|
||||
label: 'Europe East',
|
||||
geo: {
|
||||
lat: 33.2343132435,
|
||||
lon: 73.2342343434,
|
||||
|
@ -212,7 +211,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
name: 'test monitor b',
|
||||
location: {
|
||||
id: 'eu-west-01',
|
||||
label: 'Europe West',
|
||||
label: 'Europe East',
|
||||
geo: {
|
||||
lat: 33.2343132435,
|
||||
lon: 73.2342343434,
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
"locations": [
|
||||
{
|
||||
"id": "eu-west-01",
|
||||
"label": "Europe West",
|
||||
"label": "Europe East",
|
||||
"geo": {
|
||||
"lat": 33.2343132435,
|
||||
"lon": 73.2342343434
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue