-
Notifications
You must be signed in to change notification settings - Fork 212
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
test(orchestration): skip non-invitation-based boot tests #9573
Conversation
Deploying agoric-sdk with Cloudflare Pages
|
it doesn't make working with vows convenient, but I think you can sort of write it out long-hand. A vow is a tagged thing with a certain payload and such |
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.
ok... explored some options... this seems best for now.
const publicFacet = await EV(zoe).getPublicFacet(instance); | ||
t.truthy(publicFacet, 'stakeAtom publicFacet is available'); | ||
|
||
const account = await EV(publicFacet).makeAccount(); |
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.
makeAccount is tested below stakeAtom - smart wallet
and delegate
}; | ||
await t.notThrowsAsync(EV(account).delegate(validatorAddress, atomAmount)); | ||
|
||
await t.throwsAsync(EV(account).getBalance('uatom'), { |
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.
not a likely flow; probably front-end
Pushed up our spike on EV support of Vows to TLDR;
|
7e83a07
to
5ba21bc
Compare
refs: #9449
Description
Disables
@agoric/orchestration
tests inpackages/boot
that interact directly with Vows.EV
does not currently support vows, and these tests block efforts related to #9449.For tests that are skipped and not deleted, I propose testing these paths after the completion of #9572.
Testing Considerations
Skips tests instead deleting them. Taking on some tech debt until #9572