Skip uptime tests on cloud (#133052)

* Skip uptime tests on cloud

* Fix check types

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
liza-mae 2022-05-26 16:04:47 -06:00 committed by GitHub
parent ada0ad4d5f
commit e310b20bac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 5 deletions

View file

@ -17,7 +17,9 @@ import { FtrProviderContext } from '../../../ftr_provider_context';
import { getFixtureJson } from './helper/get_fixture_json';
export default function ({ getService }: FtrProviderContext) {
describe('[POST] /internal/uptime/service/monitors', () => {
describe('[POST] /internal/uptime/service/monitors', function () {
this.tags('skipCloud');
const supertestAPI = getService('supertest');
let _httpMonitorJson: HTTPFields;

View file

@ -13,7 +13,9 @@ import { FtrProviderContext } from '../../../ftr_provider_context';
import { getFixtureJson } from './helper/get_fixture_json';
export default function ({ getService }: FtrProviderContext) {
describe('[PUT] /api/uptime/service/monitors', () => {
describe('[PUT] /api/uptime/service/monitors', function () {
this.tags('skipCloud');
const supertest = getService('supertest');
const security = getService('security');
const kibanaServer = getService('kibanaServer');

View file

@ -12,7 +12,9 @@ import { FtrProviderContext } from '../../../ftr_provider_context';
import { getFixtureJson } from './helper/get_fixture_json';
export default function ({ getService }: FtrProviderContext) {
describe('[DELETE] /internal/uptime/service/monitors', () => {
describe('[DELETE] /internal/uptime/service/monitors', function () {
this.tags('skipCloud');
const supertest = getService('supertest');
let _httpMonitorJson: HTTPFields;

View file

@ -13,7 +13,9 @@ import { API_URLS } from '@kbn/synthetics-plugin/common/constants';
import { FtrProviderContext } from '../../../ftr_provider_context';
import { getFixtureJson } from './helper/get_fixture_json';
export default function ({ getService }: FtrProviderContext) {
describe('[PUT] /internal/uptime/service/monitors', () => {
describe('[PUT] /internal/uptime/service/monitors', function () {
this.tags('skipCloud');
const supertest = getService('supertest');
let _httpMonitorJson: HTTPFields;

View file

@ -13,7 +13,9 @@ import { FtrProviderContext } from '../../../ftr_provider_context';
import { getFixtureJson } from './helper/get_fixture_json';
export default function ({ getService }: FtrProviderContext) {
describe('[GET] /internal/uptime/service/monitors', () => {
describe('[GET] /internal/uptime/service/monitors', function () {
this.tags('skipCloud');
const supertest = getService('supertest');
let _monitors: MonitorFields[];