Skip to content

Commit

Permalink
fix(format): npm run format
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohr committed Sep 5, 2024
1 parent 1d0b1d3 commit 0ca1411
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions apps/home-e2e/src/e2e/home.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@ describe('home', () => {
cy.get('mel-datahub-custom-carousel')
.find('h1')
.eq(2)
.should(
'have.text',
' Leitungskataster Fernwärme AEW Energie AG '
)
.should('have.text', ' Leitungskataster Fernwärme AEW Energie AG ')
.should('be.visible')
})
describe('interactions with dataset', () => {
Expand All @@ -60,7 +57,11 @@ describe('home', () => {
)
})
it('should create correct url to navigate to search on keyword click', () => {
cy.get('mel-datahub-results-card-last-created').eq(1).find('.mel-badge-button-primary').first().click()
cy.get('mel-datahub-results-card-last-created')
.eq(1)
.find('.mel-badge-button-primary')
.first()
.click()
cy.url().should('include', 'catalogue/search?q=administration')
})
})
Expand Down

0 comments on commit 0ca1411

Please sign in to comment.