Skip to content

Commit

Permalink
Adjust parallelism for admin read and write and cache on login for AB…
Browse files Browse the repository at this point in the history
…#16867.
  • Loading branch information
BrianMaki committed Nov 19, 2024
1 parent f9054d5 commit 2c37b98
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Apps/Admin/Tests/Functional/cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ Cypress.Commands.add("logout", () => {
});

Cypress.Commands.add("login", (username, password, path) => {
// Clear cookies and local storage before starting the login process
cy.clearCookies();
cy.clearLocalStorage();

cy.session(username, () => {
cy.log("Logging in using Keycloak.");
cy.readConfig().then((config) => {
Expand Down
2 changes: 1 addition & 1 deletion Tools/Pipelines/pipelines/FunctionalTests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- "Admin_Seed"
- "Admin_Authentication_Tests"
strategy:
parallel: 5
parallel: 9
timeoutInMinutes: 15
steps:
- task: Bash@3
Expand Down

0 comments on commit 2c37b98

Please sign in to comment.