We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a8307a commit b1f9cb9Copy full SHA for b1f9cb9
packages/contracts/test/PoolERC20.test.ts
@@ -409,7 +409,13 @@ describe("PoolERC20", () => {
409
expect(await sdk.poolErc20.balanceOf(btc, bobSecretKey)).to.equal(8n);
410
});
411
412
- it.skip("swaps mpc", async () => {
+ it("swaps mpc", async () => {
413
+ if (process.env.CI) {
414
+ // TODO: install co-noir on github actions and remove this
415
+ console.log("skipping mpc swap test");
416
+ return;
417
+ }
418
+
419
const { note: aliceNote } = await sdk.poolErc20.shield({
420
account: alice,
421
token: usdc,
0 commit comments