mirror of
https://github.com/codex-storage/nim-ethers.git
synced 2025-02-04 15:43:51 +00:00
cac6026b34
- Enables postfix syntax: `call().reverts(reason)` - Removes doesNotRevert etc; uses `check not` instead - Removes waitFor(); return Future instead
12 lines
282 B
Nim
12 lines
282 B
Nim
version = "0.1.0"
|
|
author = "Nim Ethers Authors"
|
|
description = "Tests for Nim Ethers library"
|
|
license = "MIT"
|
|
|
|
requires "asynctest >= 0.3.2 & < 0.4.0"
|
|
requires "questionable >= 0.10.3 & < 0.11.0"
|
|
|
|
task test, "Run the test suite":
|
|
exec "nimble install -d -y"
|
|
exec "nim c -r test"
|