Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Aug 16, 2023
1 parent f4771ce commit 28142c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/aztec_rpc_sandbox.test.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { aztecRpcTestSuite } from '@aztec/aztec-rpc';
import { createAztecRpcClient, waitForSandbox } from '@aztec/aztec.js';
import { createAztecRpcClient, mustSucceedFetch, waitForSandbox } from '@aztec/aztec.js';

const { SANDBOX_URL = 'http://localhost:8080' } = process.env;

const setup = async () => {
const aztecRpc = createAztecRpcClient(SANDBOX_URL);
const aztecRpc = createAztecRpcClient(SANDBOX_URL, mustSucceedFetch);
await waitForSandbox(aztecRpc);
return aztecRpc;
};
Expand Down

0 comments on commit 28142c8

Please sign in to comment.