Skip to content

Commit

Permalink
fix edit conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
mki-c2c committed Nov 27, 2024
1 parent d0ba270 commit 129ffb0
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions cypress/e2e/layers-selection/layers-selection-catalog.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,7 @@ describe('Catalogue', () => {
const layers = (<AUTWindowOlMap>window).olMap
.getLayers()
.getArray()
.filter(
(l: any) =>
// regex match
!noMapLayerRegex.exec(l.get('cyLayerType'))
)
.filter((l: any) => !noMapLayerRegex.exec(l.get('cyLayerType')))
expect(layers[0].get('id')).to.eq(556)
})
cy.get('[data-cy="catalog"]')
Expand All @@ -86,11 +82,7 @@ describe('Catalogue', () => {
const layers = (<AUTWindowOlMap>window).olMap
.getLayers()
.getArray()
.filter(
(l: any) =>
// regex match
!noMapLayerRegex.exec(l.get('cyLayerType'))
)
.filter((l: any) => !noMapLayerRegex.exec(l.get('cyLayerType')))
expect(layers[0].get('id')).to.eq(359)
expect(layers[1].get('id')).to.eq(353)
})
Expand Down

0 comments on commit 129ffb0

Please sign in to comment.