File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
packages/server/tests/integration Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments