Skip to content

Commit 737cd4c

Browse files
committed
feat: flaky test removal (#4630)
Signed-off-by: Mariusz Jasuwienas <[email protected]>
1 parent d20f6c1 commit 737cd4c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/server/tests/integration/server.spec.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,7 @@ describe('RPC Server', function () {
301301
expect(res.data.result).to.be.equal('0xf956fddff3899ff3cf7ac1773fdbf443ffbfb625c1a673abdba8947251f81bae');
302302
});
303303

304-
it.skip('should execute "eth_getTransactionByHash with missing transaction"', async function () {
305-
// flaky test...
304+
it('should execute "eth_getTransactionByHash with missing transaction"', async function () {
306305
try {
307306
await testClient.post('/', {
308307
id: '2',
@@ -311,7 +310,7 @@ describe('RPC Server', function () {
311310
params: ['0x4a563af33c4871b51a8b108aa2fe1dd5280a30dfb7237170ae5e5e7957eb6392'],
312311
});
313312
} catch (error: any) {
314-
expect(error.message).to.equal('Request failed with status code 404');
313+
expect(error.message).to.equal('Request failed with status code 500');
315314
}
316315
});
317316

0 commit comments

Comments
 (0)