[Synthetics] Use package latest version 1.4.0 in tests !! (#213776)

## Summary

Use package latest version 1.4.0 in tests !!

fixes https://github.com/elastic/kibana/issues/213576
This commit is contained in:
Shahzad 2025-03-12 14:28:26 +01:00 committed by GitHub
parent c9144ad60e
commit 58fc183151
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View file

@ -30,8 +30,6 @@ import { comparePolicies } from './sample_data/test_policy';
export default function ({ getService }: DeploymentAgnosticFtrProviderContext) {
describe('AddProjectMonitorsPrivateLocations', function () {
// see details: https://github.com/elastic/kibana/issues/213576
this.tags(['failsOnMKI']);
const supertestWithoutAuth = getService('supertestWithoutAuth');
const supertestWithAuth = getService('supertest');
const kibanaServer = getService('kibanaServer');

View file

@ -14,6 +14,9 @@ export const commonVars = {
type: 'integer',
value: 2,
},
maintenance_windows: {
type: 'yaml',
},
};
export const getTestProjectSyntheticsPolicyLightweight = (

View file

@ -12,7 +12,7 @@ import { SyntheticsPrivateLocations } from '@kbn/synthetics-plugin/common/runtim
import { KibanaSupertestProvider } from '@kbn/ftr-common-functional-services';
import { DeploymentAgnosticFtrProviderContext } from '../ftr_provider_context';
export const INSTALLED_VERSION = '1.2.4';
export const INSTALLED_VERSION = '1.4.0';
export class PrivateLocationTestService {
private supertestWithAuth: ReturnType<typeof KibanaSupertestProvider>;