Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

Commit

Permalink
remove uneccessary and broken anonymous functions (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkolson committed Nov 26, 2021
1 parent bfde22a commit 92d623a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension/advanzia-assistant.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ describe('Content Script', () => {
beforeEach(() => {
script = new Script()
.on('noop', setRaised('noop'))
.on('ready', () => setRaised('ready'))
.on('done', () => setRaised('done'))
.on('ready', setRaised('ready'))
.on('done', setRaised('done'))
})

it('should not do anything if executed outside of transactions page', async () => {
Expand Down

0 comments on commit 92d623a

Please sign in to comment.