Skip to content

Commit

Permalink
fix(lint): use const arrow function for helper
Browse files Browse the repository at this point in the history
This does not require jsdoc comments.

Signed-off-by: Max <[email protected]>
  • Loading branch information
max-nextcloud committed Oct 8, 2024
1 parent 4f30db3 commit f724894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/nodes/Links.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('test link marks', function() {

describe('link bubble', function() {

function clickLink(link, options = {}) {
const clickLink = (link, options = {}) => {
cy.getContent()
.find(`a[href*="${link}"]`)
.click(options)
Expand Down

0 comments on commit f724894

Please sign in to comment.