mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-02-14 13:57:29 +00:00
* integration: move REST API tests into their own module * integration: move upload and download tests into their own module * integration: move purchasing tests into their own module * integration: move marketplace tests to the right module * integration: mine a block *after* starting nodes To ensure that tests involving multiple nodes do not start with out-of-sync clocks * Fix: do not swallow CancellationErrors * integration: avoid underflow in UInt256 * network: remove unnecessary error handling No Exceptions can occur, only Defects, because everything is asyncSpawned. Co-authored-by: Dmitriy Ryajov <dryajov@gmail.com> * network: do not raise in asyncSpawned proc Co-authored-by: Dmitriy Ryajov <dryajov@gmail.com> --------- Co-authored-by: Dmitriy Ryajov <dryajov@gmail.com>
11 lines
306 B
Nim
11 lines
306 B
Nim
import ./integration/testcli
|
|
import ./integration/testrestapi
|
|
import ./integration/testupdownload
|
|
import ./integration/testsales
|
|
import ./integration/testpurchasing
|
|
import ./integration/testblockexpiration
|
|
import ./integration/testmarketplace
|
|
import ./integration/testproofs
|
|
|
|
{.warning[UnusedImport]:off.}
|