Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gregLibert committed Apr 19, 2024
1 parent cc32bca commit 8c3f0f8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/massa-web3/test/experimental/publicAPI.spec.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import {
AddressFilter,
EventFilter,
ReadOnlyBytecodeExecution,
ReadOnlyCall,
Slot,
} from '../../src/experimental/generated/client'
import { PublicAPI, Transport } from '../../src/experimental/publicAPI'
import { createCheckers } from 'ts-interface-checker'
import validator from '../../src/experimental/generated/client-ti'
import { EventFilter } from '../../src/experimental/client'

const {
NodeStatus,
Expand Down Expand Up @@ -167,9 +167,10 @@ describe('unit tests', () => {
AddressInfo.strictCheck(info[0])
})

test.skip('getFilteredScOutputEvent', async () => {
const event = await api.getFilteredScOutputEvent({
emitter_address: 'AS12qzyNBDnwqq2vYwvUMHzrtMkVp6nQGJJ3TETVKF5HCd4yymzJP',
test.skip('getEvents', async () => {
const event = await api.getEvents({
smartContractAddress:
'AS12qzyNBDnwqq2vYwvUMHzrtMkVp6nQGJJ3TETVKF5HCd4yymzJP',
} as EventFilter)
expect(event.length > 1).toBeTruthy()
SCOutputEvent.strictCheck(event[0])
Expand Down

0 comments on commit 8c3f0f8

Please sign in to comment.