mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 17:35:45 +00:00
2fe53c334c
* makes rlnlib target optional * makes the rln-related targets conditioned to the RLN command line flag * adds the rln compiler flag condition * adds the rln compiler flag condition to the rln module * wakunode2 rln conditional compilation * updates wakunode2 test * updates waku rln relay tests * removing the rln test from the default imports of the v2 tests * imports rln module conditionally * removes the rln flag condition from the rln module * separates rln data types from its procs * adds the import statement * brings back the contract def to the rln utils * adds rln module import to the rln unit tests * clean up and reorganization * adds a todo * minor edits on a comment
26 lines
804 B
Nim
26 lines
804 B
Nim
import
|
|
# Waku v2 tests
|
|
# TODO: enable this when it is altered into a proper waku relay test
|
|
# ./v2/test_waku,
|
|
./v2/test_wakunode,
|
|
./v2/test_waku_store,
|
|
./v2/test_waku_filter,
|
|
./v2/test_waku_pagination,
|
|
./v2/test_waku_payload,
|
|
./v2/test_waku_swap,
|
|
./v2/test_message_store,
|
|
./v2/test_jsonrpc_waku,
|
|
./v2/test_peer_manager,
|
|
./v2/test_web3, # TODO remove it when rln-relay tests get finalized
|
|
./v2/test_waku_bridge,
|
|
./v2/test_peer_storage,
|
|
./v2/test_waku_keepalive
|
|
|
|
when defined(rln):
|
|
import ./v2/test_waku_rln_relay
|
|
|
|
|
|
# TODO Only enable this once swap module is integrated more nicely as a dependency, i.e. as submodule with CI etc
|
|
# For PoC execute it manually and run separate module here: https://github.com/vacp2p/swap-contracts-module
|
|
# ./v2/test_waku_swap_contracts
|