Skip to content

Commit

Permalink
skip api check tests
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjah committed Jan 15, 2025
1 parent e83c553 commit 37c3ce0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/integration/publicAPI.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,14 @@ describe('client tests', () => {
SCOutputEvent.strictCheck(event[0])
})

test('executeReadOnlyBytecode', async () => {
// skip it til mainnet is updated
test.skip('executeReadOnlyBytecode', async () => {
const response = await client.executeReadOnlyBytecode({
bytecode: Array.from(DEPLOYER_BYTECODE),
address: TEST_USER,
max_gas: Number(MAX_GAS_CALL),
})

ExecuteReadOnlyResponse.strictCheck(response)
})

Expand Down

1 comment on commit 37c3ce0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for experimental massa-web3

St.
Category Percentage Covered / Total
🟡 Statements 66.19% 1255/1896
🔴 Branches 43.51% 201/462
🔴 Functions 46.54% 222/477
🟡 Lines 66.77% 1248/1869

Test suite run success

134 tests passing in 15 suites.

Report generated by 🧪jest coverage report action from 37c3ce0

Please sign in to comment.