diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/users/user_details.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/users/user_details.cy.ts index 2e7f81f3cd1fe..3076a7f1fcccd 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/users/user_details.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/users/user_details.cy.ts @@ -21,7 +21,7 @@ import { } from '../../../tasks/alerts'; import { USER_COLUMN } from '../../../screens/alerts'; -describe('user details flyout', () => { +describe('user details flyout', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { cleanKibana(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/users/users_tabs.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/users/users_tabs.cy.ts index fad136becf1a2..e066c5c9ec533 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/users/users_tabs.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/users/users_tabs.cy.ts @@ -16,11 +16,11 @@ import { RISK_SCORE_TAB, RISK_SCORE_TAB_CONTENT } from '../../../screens/users/u import { cleanKibana } from '../../../tasks/common'; import { login } from '../../../tasks/login'; -import { visit, visitUserDetailsPage } from '../../../tasks/navigation'; +import { visitUserDetailsPage, visitWithTimeRange } from '../../../tasks/navigation'; import { USERS_URL } from '../../../urls/navigation'; -describe('Users stats and tables', () => { +describe('Users stats and tables', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', { archiveName: 'users' }); @@ -30,7 +30,7 @@ describe('Users stats and tables', () => { beforeEach(() => { login(); - visit(USERS_URL); + visitWithTimeRange(USERS_URL); }); after(() => {