Skip to content

Commit 545fd39

Browse files
committed
Remove unused test
1 parent a1a46fc commit 545fd39

3 files changed

Lines changed: 27 additions & 2 deletions

File tree

examples/evm-client/src/main-rpc.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ const command = defineCommand({
4949
chain,
5050
transport: http(args.rpcUrl, {
5151
batch: {
52-
wait: 10,
52+
wait: 200,
5353
},
5454
}),
5555
});
5656

5757
const client = createRpcClient(
5858
new EvmRpcStream(viemClient, {
59-
getLogsRangeSize: 10n,
59+
getLogsRangeSize: 100n,
6060
}),
6161
);
6262

packages/protocol/tests/rpc-stream.test.ts renamed to packages/protocol/tests/rpc-stream.ignore.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*
12
import { beforeEach, describe, expect, it } from "vitest";
23
import type { Bytes, Cursor } from "../src/common";
34
import { RpcClient } from "../src/rpc/client";
@@ -698,3 +699,5 @@ describe("RpcClient", () => {
698699
);
699700
});
700701
});
702+
703+
*/
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ESNext",
4+
"module": "ESNext",
5+
"moduleResolution": "Bundler",
6+
"types": ["node"],
7+
"declaration": true,
8+
"sourceMap": true,
9+
"esModuleInterop": true,
10+
"forceConsistentCasingInFileNames": true,
11+
"strict": true,
12+
"skipLibCheck": true,
13+
"outDir": "./dist",
14+
"declarationDir": "dist",
15+
"noEmit": false,
16+
"rootDir": "./",
17+
"emitDeclarationOnly": false,
18+
"incremental": true,
19+
"tsBuildInfoFile": "/home/fra/Hacks/apibara/typescript-sdk/node_modules/.pnpm/vitest@1.6.0_@types+node@20.14.0/node_modules/vitest/dist/vendor/tsconfig.tmp.tsbuildinfo"
20+
},
21+
"exclude": ["dist"]
22+
}

0 commit comments

Comments
 (0)