Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Jul 16, 2024
1 parent 47b44e1 commit cd1af5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/app/layouts/full-layout.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,10 @@
New Project
</a>
</li>
<ng-container class="nav-group" *ngIf="project_enumeration?.length <= 3">
<span data-test-id="project_list" class="nav-group" *ngIf="project_enumeration?.length <= 3">
<li
class="nav-item"
id="project_list"
data-test-id="project_list"
*ngFor="let application of project_enumeration"
style="width: 100% !important"
>
Expand Down Expand Up @@ -253,7 +252,7 @@
</div>
</a>
</li>
</ng-container>
</span>
<li
class="nav-group"
id="project_list_folded"
Expand Down
4 changes: 2 additions & 2 deletions tests/simplevm_application.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test.describe.serial('@simple_vm_application', () => {
test.describe('Should delete old simple_vm applications', () => {
test.use({ storageState: Util.VO_MANAGER_STORAGE });
test('VO @simple_vm_application', async ({ page, baseURL }) => {
test.setTimeout(60 * 1000);
test.setTimeout(80 * 1000);
const applicationPage = new ApplicationOverviewPage(page, baseURL);
await applicationPage.declineApplications(Util.SIMPLE_VM_APPLICATION_NAME);
const voOverviewPage = new VoOverviewPage(page, baseURL);
Expand Down Expand Up @@ -72,7 +72,7 @@ test.describe.serial('@simple_vm_application', () => {
test.describe('Aftercare - Should delete old simple_vm_application', () => {
test.use({ storageState: Util.VO_MANAGER_STORAGE });
test('VO @simple_vm_application', async ({ page, baseURL }) => {
test.setTimeout(60 * 1000);
test.setTimeout(80 * 1000);
const applicationPage = new ApplicationOverviewPage(page, baseURL);
await applicationPage.declineApplications(Util.SIMPLE_VM_APPLICATION_NAME);
const voOverviewPage = new VoOverviewPage(page, baseURL);
Expand Down

0 comments on commit cd1af5e

Please sign in to comment.