Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeneston-pass committed Nov 26, 2024
1 parent 75a60e6 commit 669c41f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .storybook/mocks/firebase.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,18 @@ const firebase = {
}),
firestore: () => ({
settings: () => {},
enablePersistence: () => true
enablePersistence: () => true,
collection: () => ({
doc: () => ({
get: () => {},
set: () => {},
update: () => {},
delete: () => {},
onSnapshot: (callback) => {
callback({ data: () => {}, get: () => {} })
},
}),
}),
}),
}

Expand Down

0 comments on commit 669c41f

Please sign in to comment.