Skip to content

Commit

Permalink
updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Gkrumbach07 committed Jun 24, 2024
1 parent 97ac0bd commit 3e4c833
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ describe('Pipelines', () => {
});
});

it('incompatible dpsa version shows error', () => {
it('incompatible dpsa version shows error with delete option for regular user', () => {
initIntercepts({});
pipelinesGlobal.visit(projectName);
cy.interceptK8sList(
Expand All @@ -496,10 +496,10 @@ describe('Pipelines', () => {
pipelinesGlobal.visit(projectName);
pipelinesGlobal.isApiAvailable();
pipelinesGlobal.findIsServerIncompatible().should('exist');
pipelinesGlobal.findDeletePipelineServerButton().should('not.exist');
pipelinesGlobal.findDeletePipelineServerButton().should('exist');
});

it('incompatible dpsa version shows error with delete option for admins', () => {
it('incompatible dpsa version shows error with delete option for admin', () => {
asProductAdminUser();
initIntercepts({});
pipelinesGlobal.visit(projectName);
Expand Down

0 comments on commit 3e4c833

Please sign in to comment.