hashgraph / hedera-sourcify

Tools for verifying Hedera smart contracts using standard open source libraries.
Apache License 2.0
6 stars 7 forks source link

Enable CI unit tests for `contract-call-decoder` #94

Closed acuarica closed 6 months ago

acuarica commented 6 months ago

The unit tests for contract-call-decoder, cd packages/contract-call-decoder && npm run test, fail on CI because of an external IPFS request timeout.

Enable those tests in CI by avoiding the external IPFS request.

Nana-EC commented 6 months ago

If possible maybe we can point it to a local IPFS node spun up as part of CI

acuarica commented 6 months ago

@Nana-EC I've checked the Sourcify repo and they've skipped the problematic test as well https://github.com/ethereum/sourcify/commit/cba1738443de0319f7affbd827ae7e924875d79b.

We could take the same approach and skip the test to enable CI testing, and figure out later how to fix the test.