Skip to content

Commit

Permalink
chore: fix simple addon test class
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek committed Oct 11, 2024
1 parent c93d5d4 commit 47e6c3b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib/services/addon-service-test-simple-addon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,10 @@ export default class SimpleAddon extends Addon {
}

// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
async handleEvent(event: IEvent, parameters: any): Promise<string> {
async handleEvent(event: IEvent, parameters: any): Promise<void> {
this.events.push({
event,
parameters,
});

return 'success';
}
}

0 comments on commit 47e6c3b

Please sign in to comment.