Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Commit

Permalink
add code that fails for matching bulkDocs results
Browse files Browse the repository at this point in the history
  • Loading branch information
vschep committed Dec 5, 2018
1 parent 16930ea commit 5a7cb57
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/CoreTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,13 @@ describe "Core tests" <| fun _ ->
opt.docs <- !!data
)
let! results = db.bulkDocs options

results
|> Seq.iter (fun result ->
match result with
| U2.Case1 response -> printfn "--- result: %A" result
| U2.Case2 error -> printfn "--- error: %A" error)

return results.Count = data.Length
}
|> Promise.map(fun actual -> equal true actual)
Expand Down

0 comments on commit 5a7cb57

Please sign in to comment.