You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, in our tests for the ActivityPubSystem, by stubbing the method aps.verifySignedRequest, we're bypassing its actual implementation and immediately returning a resolved promise with a predefined value. This means the real logic of verifySignedRequest is never executed during the test.
We should only stub fetch and use a regular store and keep all the other apis as is if possible.
Revisit the tests after M3
The text was updated successfully, but these errors were encountered:
Currently, in our tests for the
ActivityPubSystem
, by stubbing the methodaps.verifySignedRequest
, we're bypassing its actual implementation and immediately returning a resolved promise with a predefined value. This means the real logic ofverifySignedRequest
is never executed during the test.The text was updated successfully, but these errors were encountered: