From 76669931da14b227c6f1299d7b45824b9fbc4af4 Mon Sep 17 00:00:00 2001 From: ryo-casper Date: Wed, 10 Jul 2024 11:48:18 +0900 Subject: [PATCH] disable state_get_auction_info test --- e2e/services/CasperServiceByJsonRPC.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/services/CasperServiceByJsonRPC.test.ts b/e2e/services/CasperServiceByJsonRPC.test.ts index 11315584..51001174 100644 --- a/e2e/services/CasperServiceByJsonRPC.test.ts +++ b/e2e/services/CasperServiceByJsonRPC.test.ts @@ -213,12 +213,12 @@ describe('CasperServiceByJsonRPC', () => { expect(peers).to.have.property('peers'); }); - it('state_get_auction_info - newest one', async () => { + xit('state_get_auction_info - newest one', async () => { const validators = await client.getValidatorsInfo(); expect(validators).to.have.property('auction_state'); }); - it('state_get_auction_info - by height', async () => { + xit('state_get_auction_info - by height', async () => { const validators = await client.getValidatorsInfoByBlockHeight(1); expect(validators).to.have.property('auction_state'); expect(validators.auction_state.block_height).to.be.eq(1);