Skip to content

Commit

Permalink
disable state_get_auction_info test
Browse files Browse the repository at this point in the history
  • Loading branch information
ryo-casper committed Jul 10, 2024
1 parent e11407b commit 7666993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/services/CasperServiceByJsonRPC.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7666993

Please sign in to comment.