Skip to content

Commit b1f9cb9

Browse files
committed
skip only on ci
1 parent 0a8307a commit b1f9cb9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/contracts/test/PoolERC20.test.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,13 @@ describe("PoolERC20", () => {
409409
expect(await sdk.poolErc20.balanceOf(btc, bobSecretKey)).to.equal(8n);
410410
});
411411

412-
it.skip("swaps mpc", async () => {
412+
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+
413419
const { note: aliceNote } = await sdk.poolErc20.shield({
414420
account: alice,
415421
token: usdc,

0 commit comments

Comments
 (0)