We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What is the Problem Being Solved?
test(`zcf.makeInvitation - no offerHandler`, async t => { const { zcf, zoe } = await setupZCFTest(); const invitationP = zcf.makeInvitation(undefined, 'myInvitation'); const invitationIssuer = await E(zoe).getInvitationIssuer(); const isLive = await E(invitationIssuer).isLive(invitationP); t.truthy(isLive); const seat = E(zoe).offer(invitationP); // const offerResult = await E(seat).getOfferResult(); // t.is(offerResult, undefined); await t.throwsAsync(() => E(seat).getOfferResult()); });
Description of the Design
We should have a default no-op offerHandler that returns void.
Security Considerations
None
Test Plan ZCF Tests (how this was found)
The text was updated successfully, but these errors were encountered:
katelynsills
Successfully merging a pull request may close this issue.
What is the Problem Being Solved?
Description of the Design
We should have a default no-op offerHandler that returns void.
Security Considerations
None
Test Plan
ZCF Tests (how this was found)
The text was updated successfully, but these errors were encountered: