mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-02 13:43:06 +00:00
15 lines
400 B
Nim
15 lines
400 B
Nim
version = "0.1.0"
|
|
author = "Nim Ethers Authors"
|
|
description = "Tests for Nim Ethers library"
|
|
license = "MIT"
|
|
|
|
requires "asynctest >= 0.4.0 & < 0.5.0"
|
|
|
|
task test, "Run the test suite":
|
|
exec "nimble install -d -y"
|
|
exec "nim c -r test"
|
|
|
|
task testWsResubscription, "Run the test suite":
|
|
exec "nimble install -d -y"
|
|
exec "nim c --define:ws_resubscribe=3 -r providers/jsonrpc/testWsResubscription"
|