-
Notifications
You must be signed in to change notification settings - Fork 945
user.delete() implementation #3072
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Binary Size ReportAffected SDKsNo changes between base commit (b278cea) and head commit (542a5cd). Test Logs
|
const user = new UserImpl({ uid: 'uid', auth, stsTokenManager }); | ||
expect(() => user.delete()).to.throw(); | ||
const endpoint = mockEndpoint(Endpoint.DELETE_ACCOUNT, {}); | ||
const signOut = sinon.stub(auth, 'signOut'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it possible to test side effects instead of mocking this out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do this once #2963 merges
86c1b2f
to
2973aea
Compare
No description provided.