mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
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:
parent
ada0ad4d5f
commit
e310b20bac
5 changed files with 15 additions and 5 deletions
|
@ -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;
|
||||
|
|
|
@ -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');
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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[];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue