mirror of https://github.com/vacp2p/nim-libp2p.git
temporarily skip broken test on windows (#375)
This commit is contained in:
parent
25bd0a18f4
commit
58f26d4164
|
@ -249,8 +249,12 @@ suite "Interop":
|
|||
await sleepAsync(1.seconds)
|
||||
result = true
|
||||
|
||||
check:
|
||||
waitFor(runTests()) == true
|
||||
when defined(windows):
|
||||
# TODO Repair this test on windows
|
||||
skip()
|
||||
else:
|
||||
check:
|
||||
waitFor(runTests()) == true
|
||||
|
||||
test "native -> daemon connection":
|
||||
proc runTests(): Future[bool] {.async.} =
|
||||
|
|
Loading…
Reference in New Issue