Skip to content

Commit

Permalink
test(events-listeners): replace var with let (#268)
Browse files Browse the repository at this point in the history
Signed-off-by: Frazer Smith <[email protected]>
  • Loading branch information
Fdawgs authored Oct 24, 2024
1 parent 024a160 commit 654c2b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/events-listeners.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ test('boot a plugin and then execute a call after that', (t) => {
})

const app = boot()
// eslint-disable-next-line no-var
for (var i = 0; i < 12; i++) {
for (let i = 0; i < 12; i++) {
app.on('preReady', noop)
}

Expand Down

0 comments on commit 654c2b7

Please sign in to comment.