From 62eeb2dd9a119cbe9c17603538e274f966249910 Mon Sep 17 00:00:00 2001 From: Justin Kambic Date: Tue, 2 Apr 2024 17:07:13 -0400 Subject: [PATCH] Delete unused synthetics config file. --- .../observability/synthetics/config.ts | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 x-pack/test_serverless/api_integration/test_suites/observability/synthetics/config.ts diff --git a/x-pack/test_serverless/api_integration/test_suites/observability/synthetics/config.ts b/x-pack/test_serverless/api_integration/test_suites/observability/synthetics/config.ts deleted file mode 100644 index 729f454205f99..0000000000000 --- a/x-pack/test_serverless/api_integration/test_suites/observability/synthetics/config.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { FtrConfigProviderContext } from '@kbn/test'; - -export default async function ({ readConfigFile }: FtrConfigProviderContext) { - const baseIntegrationTestsConfig = await readConfigFile(require.resolve('../config.ts')); - - return { - ...baseIntegrationTestsConfig.getAll(), - kbnTestServer: { - ...baseIntegrationTestsConfig.get('kbnTestServer'), - serverArgs: [ - ...baseIntegrationTestsConfig.get('kbnTestServer.serverArgs'), - '--xpack.uptime.service.manifestUrl=mockDevUrl', - ], - }, - testFiles: [require.resolve('.')], - }; -}