Skip to content

Commit

Permalink
ci: test wallet-factory core proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
mhofman authored and Chris-Hibbert committed Jan 20, 2024
1 parent adecda8 commit 81d2080
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
6 changes: 5 additions & 1 deletion a3p-integration/proposals/a:upgrade-14/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
"releaseNotes": "https://github.com/Agoric/agoric-sdk/releases/tag/agoric-upgrade-14",
"sdkImageTag": "unreleased",
"planName": "agoric-upgrade-14",
"upgradeInfo": {},
"upgradeInfo": {
"coreProposals": [
"@agoric/vats/scripts/build-wallet-factory2-upgrade.js"
]
},
"type": "Software Upgrade Proposal"
},
"type": "module",
Expand Down
8 changes: 8 additions & 0 deletions a3p-integration/proposals/a:upgrade-14/post.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import test from 'ava';
import { getIncarnation } from '@agoric/synthetic-chain/src/lib/vat-status.js';

test(`Smart Wallet vat was upgraded`, async t => {
const incarnation = await getIncarnation('walletFactory');

t.is(incarnation, 2);
});

0 comments on commit 81d2080

Please sign in to comment.