Skip to content

Commit

Permalink
chore: bump snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Dec 20, 2024
1 parent 758d6c3 commit ec8f2e0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions src/utils/rpc/http.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('request', () => {
{
"id": 1,
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
}
`)
})
Expand All @@ -41,7 +41,7 @@ describe('request', () => {
{
"id": 3,
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
}
`)
})
Expand Down Expand Up @@ -421,12 +421,12 @@ describe('http (batch)', () => {
{
"id": 93,
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
},
{
"id": 94,
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
},
]
`)
Expand All @@ -447,7 +447,7 @@ describe('http (batch)', () => {
{
"id": 96,
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
},
{
"error": {
Expand All @@ -473,7 +473,7 @@ describe('http (batch)', () => {
{
"id": 99,
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
},
{
"error": {
Expand Down
4 changes: 2 additions & 2 deletions src/utils/rpc/ipc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe('request', () => {
expect(version).toMatchInlineSnapshot(`
{
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
}
`)
expect(rpcClient.requests.size).toBe(0)
Expand Down Expand Up @@ -588,7 +588,7 @@ describe('requestAsync', () => {
expect(version).toMatchInlineSnapshot(`
{
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
}
`)
expect(client.requests.size).toBe(0)
Expand Down
4 changes: 2 additions & 2 deletions src/utils/rpc/webSocket.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe('request', () => {
expect(version).toMatchInlineSnapshot(`
{
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
}
`)
expect(socketClient.requests.size).toBe(0)
Expand Down Expand Up @@ -590,7 +590,7 @@ describe('requestAsync', () => {
expect(version).toMatchInlineSnapshot(`
{
"jsonrpc": "2.0",
"result": "anvil/v0.2.0",
"result": "anvil/v0.3.0",
}
`)
expect(client.requests.size).toBe(0)
Expand Down

0 comments on commit ec8f2e0

Please sign in to comment.