Skip to content

Commit

Permalink
Move plugin folder
Browse files Browse the repository at this point in the history
  • Loading branch information
CoenWarmer committed Feb 21, 2024
1 parent 418ff27 commit cf4b76c
Show file tree
Hide file tree
Showing 1,013 changed files with 13 additions and 15 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ const SERVICE_USERNAME = 'xpack.uptime.service.username';

async function config({ readConfigFile }: FtrConfigProviderContext) {
const kibanaCommonTestsConfig = await readConfigFile(
require.resolve('../../../../test/common/config.js')
require.resolve('../../../../../test/common/config.js')
);
const xpackFunctionalTestsConfig = await readConfigFile(
require.resolve('../../../test/functional/config.base.js')
require.resolve('../../../../test/functional/config.base.js')
);

const kibanaConfig = readKibanaConfig();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"extends": "../../../../tsconfig.base.json",
"extends": "../../../../../tsconfig.base.json",
"exclude": ["tmp", "target/**/*"],
"include": ["**/*"],
"compilerOptions": {
"outDir": "target/types",
"types": [ "node"],
"isolatedModules": false,
"types": ["node"],
"isolatedModules": false
},
"kbn_references": [
{ "path": "../../../test/tsconfig.json" },
{ "path": "../../../../test/tsconfig.json" },
{ "path": "../../../../../test/tsconfig.json" },
"@kbn/test",
"@kbn/dev-utils",
"@kbn/ux-plugin/e2e",
"@kbn/ftr-common-functional-services",
"@kbn/apm-plugin",
"@kbn/es-archiver",
"@kbn/es-archiver"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

module.exports = {
preset: '@kbn/test',
rootDir: '../../..',
rootDir: '../../../..',
roots: ['<rootDir>/x-pack/plugins/synthetics'],
coverageDirectory: '<rootDir>/target/kibana-coverage/jest/x-pack/plugins/synthetics',
coverageReporters: ['text', 'html'],
Expand Down
File renamed without changes.
Loading

0 comments on commit cf4b76c

Please sign in to comment.