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
The error messages if no arguments are provided is currently:
test(`zcf.makeZCFMint - mintGains`, async t => { const { zcf } = await setupZCFTest(); const zcfMint = await zcf.makeZCFMint('A', MathKind.SET); // TODO: create seat if one is not provided // https://github.com/Agoric/agoric-sdk/issues/1696 // @ts-ignore t.throws(() => zcfMint.mintGains(), { message: 'On demand seat creation not yet implemented', }); }); test(`zcf.makeZCFMint - burnLosses`, async t => { const { zcf } = await setupZCFTest(); const zcfMint = await zcf.makeZCFMint('A', MathKind.SET); // @ts-ignore t.throws(() => zcfMint.burnLosses(), { message: "Cannot read property 'getCurrentAllocation' of undefined", }); });
We should improve these error messages.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The error messages if no arguments are provided is currently:
We should improve these error messages.
The text was updated successfully, but these errors were encountered: