Skip to content

Commit

Permalink
Merge pull request #809 from geonetwork/fix-flaky-e2e-tests-2
Browse files Browse the repository at this point in the history
e2e(ME): fix arrow function
  • Loading branch information
jahow committed Mar 1, 2024
2 parents eaf94da + df90fce commit 37255b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/metadata-editor-e2e/src/e2e/dashboard.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('dashboard', () => {
.eq(1)
.invoke('text')
.invoke('trim')
.then((newFirstItem) => {
.then(function (newFirstItem) {
expect(newFirstItem).not.to.equal(this.originalFirstItem)
})
})
Expand Down

0 comments on commit 37255b6

Please sign in to comment.