Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MidhunSureshR committed Oct 16, 2023
1 parent 455181a commit fd8741a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spec/unit/stores/indexeddb.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ describe("IndexedDBStore", () => {
store.setUserCreator((id: string) => {
userCreated = true;
const user = new User(id);
user.on(UserEvent.Presence, () => { presenceEventEmitted = true; });
user.on(UserEvent.Presence, () => {
presenceEventEmitted = true;
});
return user;
});
await store.startup();
Expand Down

0 comments on commit fd8741a

Please sign in to comment.