Skip to content

Commit ac6027e

Browse files
committed
Fix remaining paths
1 parent a15aa35 commit ac6027e

File tree

20 files changed

+60
-56
lines changed

20 files changed

+60
-56
lines changed

.buildkite/scripts/pipelines/pull_request/pipeline.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ const getPipeline = (filename: string, removeSteps = true) => {
225225
/^x-pack\/solutions\/security\/packages\/kbn-securitysolution-.*/,
226226
/^x-pack\/solutions\/security\/plugins\/security_solution/,
227227
/^x-pack\/solutions\/security\/test\/defend_workflows_cypress/,
228-
/^x-pack\/test\/security_solution_cypress/,
228+
/^x-pack\/solutions\/security\/test\/security_solution_cypress/,
229229
/^fleet_packages\.json/,
230230
])) ||
231231
GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
@@ -259,7 +259,7 @@ const getPipeline = (filename: string, removeSteps = true) => {
259259
/^x-pack\/platform\/packages\/shared\/kbn-elastic-assistant/,
260260
/^x-pack\/platform\/packages\/shared\/kbn-elastic-assistant-common/,
261261
/^x-pack\/test\/functional\/es_archives\/security_solution/,
262-
/^x-pack\/test\/security_solution_cypress/,
262+
/^x-pack\/solutions\/security\/test\/security_solution_cypress/,
263263
])) ||
264264
GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
265265
) {
@@ -340,7 +340,7 @@ const getPipeline = (filename: string, removeSteps = true) => {
340340
/^x-pack\/platform\/plugins\/shared\/triggers_actions_ui/,
341341
/^x-pack\/platform\/plugins\/shared\/usage_collection\/public/,
342342
/^x-pack\/test\/functional\/es_archives\/security_solution/,
343-
/^x-pack\/test\/security_solution_cypress/,
343+
/^x-pack\/solutions\/security\/test\/security_solution_cypress/,
344344
])) ||
345345
GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
346346
) {
@@ -403,7 +403,7 @@ const getPipeline = (filename: string, removeSteps = true) => {
403403
/^x-pack\/platform\/plugins\/shared\/triggers_actions_ui/,
404404
/^x-pack\/platform\/plugins\/shared\/usage_collection\/public/,
405405
/^x-pack\/test\/functional\/es_archives\/security_solution/,
406-
/^x-pack\/test\/security_solution_cypress/,
406+
/^x-pack\/solutions\/security\/test\/security_solution_cypress/,
407407
])) ||
408408
GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
409409
) {
@@ -431,7 +431,7 @@ const getPipeline = (filename: string, removeSteps = true) => {
431431
/^x-pack\/packages\/kbn-cloud-security-posture/,
432432
/^x-pack\/solutions\/security\/plugins\/cloud_security_posture/,
433433
/^x-pack\/solutions\/security\/plugins\/security_solution/,
434-
/^x-pack\/test\/security_solution_cypress/,
434+
/^x-pack\/solutions\/security\/test\/security_solution_cypress/,
435435
])) ||
436436
GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
437437
) {
@@ -473,7 +473,7 @@ const getPipeline = (filename: string, removeSteps = true) => {
473473
if (
474474
(await doAnyChangesMatch([
475475
/^x-pack\/solutions\/security\/plugins\/security_solution\/public\/asset_inventory/,
476-
/^x-pack\/test\/security_solution_cypress/,
476+
/^x-pack\/solutions\/security\/test\/security_solution_cypress/,
477477
])) ||
478478
GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
479479
) {

x-pack/solutions/security/packages/kbn-scout-security/src/playwright/constants/archives.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
*/
77

88
export const ES = {
9-
AUDITBEAT: 'x-pack/solutions/security/test/security_solution_cypress/es_archives/auditbeat_single',
9+
AUDITBEAT:
10+
'x-pack/solutions/security/test/security_solution_cypress/es_archives/auditbeat_single',
1011
};

x-pack/solutions/security/plugins/security_solution/public/management/cypress/e2e/automated_response_actions/automated_response_actions.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* 2.0.
66
*/
77

8-
import { waitForAlertsToPopulate } from '@kbn/test-suites-xpack/security_solution_cypress/cypress/tasks/create_new_rule';
8+
import { waitForAlertsToPopulate } from '@kbn/test-suites-xpack-security/security_solution_cypress/cypress/tasks/create_new_rule';
99
import { login } from '../../tasks/login';
1010
import { waitForEndpointListPageToBeLoaded } from '../../tasks/response_console';
1111
import type { PolicyData } from '../../../../../common/endpoint/types';

x-pack/solutions/security/plugins/security_solution/public/management/cypress/e2e/rbac/navigation.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
* 2.0.
66
*/
77

8-
import * as ServerlessHeaders from '@kbn/test-suites-xpack/security_solution_cypress/cypress/screens/serverless_security_header';
9-
import * as EssHeaders from '@kbn/test-suites-xpack/security_solution_cypress/cypress/screens/security_header';
8+
import * as ServerlessHeaders from '@kbn/test-suites-xpack-security/security_solution_cypress/cypress/screens/serverless_security_header';
9+
import * as EssHeaders from '@kbn/test-suites-xpack-security/security_solution_cypress/cypress/screens/security_header';
1010
import { login, ROLE } from '../../tasks/login';
1111
import { loadPage } from '../../tasks/common';
1212
import { SIEM_VERSIONS } from '../../common/constants';

x-pack/solutions/security/plugins/security_solution/public/management/cypress/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"@kbn/security-solution-serverless",
3535
"@kbn/dev-utils",
3636
"@kbn/spaces-plugin",
37-
"@kbn/test-suites-xpack/security_solution_cypress/cypress",
37+
"@kbn/test-suites-xpack-security/security_solution_cypress/cypress",
3838
"@kbn/elastic-assistant-common",
3939
"@kbn/actions-plugin",
4040
]

x-pack/solutions/security/test/security_solution_cypress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
1414
require.resolve('@kbn/test-suites-src/common/config')
1515
);
1616
const xpackFunctionalTestsConfig = await readConfigFile(
17-
require.resolve('../functional/config.base.js')
17+
require.resolve('@kbn/test-suites-xpack-platform/functional/config.base.js')
1818
);
1919

2020
return {

x-pack/solutions/security/test/security_solution_cypress/cypress/cypress.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ export default defineCypressConfig({
1919
execTimeout: 60000,
2020
pageLoadTimeout: 60000,
2121
responseTimeout: 60000,
22-
screenshotsFolder: '../../../target/kibana-security-solution/cypress/screenshots',
22+
screenshotsFolder: '../../../../../../target/kibana-security-solution/cypress/screenshots',
2323
trashAssetsBeforeRuns: false,
2424
video: false,
25-
videosFolder: '../../../target/kibana-security-solution/cypress/videos',
25+
videosFolder: '../../../../../../target/kibana-security-solution/cypress/videos',
2626
viewportHeight: 1200,
2727
viewportWidth: 1920,
2828
numTestsKeptInMemory: 10,

x-pack/solutions/security/test/security_solution_cypress/cypress/cypress_ci.config.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ import { defineCypressConfig } from '@kbn/cypress-config';
99
import { esArchiver } from './support/es_archiver';
1010
import { esClient } from './support/es_client';
1111

12-
// eslint-disable-next-line import/no-default-export
1312
export default defineCypressConfig({
14-
reporter: '../../../node_modules/cypress-multi-reporters',
13+
reporter: '../../../../../../node_modules/cypress-multi-reporters',
1514
reporterOptions: {
1615
configFile: './cypress/reporter_config.json',
1716
},
@@ -28,10 +27,10 @@ export default defineCypressConfig({
2827
retries: {
2928
runMode: 1,
3029
},
31-
screenshotsFolder: '../../../target/kibana-security-solution/cypress/screenshots',
30+
screenshotsFolder: '../../../../../../target/kibana-security-solution/cypress/screenshots',
3231
trashAssetsBeforeRuns: false,
3332
video: false,
34-
videosFolder: '../../../target/kibana-security-solution/cypress/videos',
33+
videosFolder: '../../../../../../target/kibana-security-solution/cypress/videos',
3534
viewportHeight: 1200,
3635
viewportWidth: 1920,
3736
e2e: {

x-pack/solutions/security/test/security_solution_cypress/cypress/cypress_ci_serverless.config.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ import { esArchiver } from './support/es_archiver';
1010
import { samlAuthentication } from './support/saml_auth';
1111
import { esClient } from './support/es_client';
1212

13-
// eslint-disable-next-line import/no-default-export
1413
export default defineCypressConfig({
15-
reporter: '../../../node_modules/cypress-multi-reporters',
14+
reporter: '../../../../../../node_modules/cypress-multi-reporters',
1615
reporterOptions: {
1716
configFile: './cypress/reporter_config.json',
1817
},
@@ -29,10 +28,10 @@ export default defineCypressConfig({
2928
retries: {
3029
runMode: 1,
3130
},
32-
screenshotsFolder: '../../../target/kibana-security-solution/cypress/screenshots',
31+
screenshotsFolder: '../../../../../../target/kibana-security-solution/cypress/screenshots',
3332
trashAssetsBeforeRuns: false,
3433
video: false,
35-
videosFolder: '../../../../target/kibana-security-solution/cypress/videos',
34+
videosFolder: '../../../../../../target/kibana-security-solution/cypress/videos',
3635
viewportHeight: 1200,
3736
viewportWidth: 1920,
3837
e2e: {

x-pack/solutions/security/test/security_solution_cypress/cypress/cypress_ci_serverless_qa.config.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ import { esArchiver } from './support/es_archiver';
1010
import { samlAuthentication } from './support/saml_auth';
1111
import { esClient } from './support/es_client';
1212

13-
// eslint-disable-next-line import/no-default-export
1413
export default defineCypressConfig({
15-
reporter: '../../../node_modules/cypress-multi-reporters',
14+
reporter: '../../../../../../node_modules/cypress-multi-reporters',
1615
reporterOptions: {
1716
configFile: './cypress/reporter_config.json',
1817
},
@@ -31,10 +30,10 @@ export default defineCypressConfig({
3130
retries: {
3231
runMode: 1,
3332
},
34-
screenshotsFolder: '../../../target/kibana-security-solution/cypress/screenshots',
33+
screenshotsFolder: '../../../../../../target/kibana-security-solution/cypress/screenshots',
3534
trashAssetsBeforeRuns: false,
3635
video: false,
37-
videosFolder: '../../../../target/kibana-security-solution/cypress/videos',
36+
videosFolder: '../../../../../../target/kibana-security-solution/cypress/videos',
3837
viewportHeight: 1200,
3938
viewportWidth: 1920,
4039
e2e: {

0 commit comments

Comments
 (0)