From 37c3ce045dbc4ade661dc0ae47e6bdbe883fa49e Mon Sep 17 00:00:00 2001 From: Peterjah Date: Wed, 15 Jan 2025 18:40:02 +0100 Subject: [PATCH] skip api check tests --- test/integration/publicAPI.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/integration/publicAPI.spec.ts b/test/integration/publicAPI.spec.ts index e43f7f9c..76d86266 100644 --- a/test/integration/publicAPI.spec.ts +++ b/test/integration/publicAPI.spec.ts @@ -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) })