You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to run tests which I have written for my noir crate.
Expected behavior
nargo test should compile and run all the test functions which I have defined locally. It should not run test cases from any crates in my dependency tree (as I assume that these are correct).
Bug
As all functions are exposed from the library crate I'm importing, nargo sees these test functions and runs them as part of my test suite as if I wrote them myself.
Description
Aim
I wanted to run tests which I have written for my noir crate.
Expected behavior
nargo test
should compile and run all the test functions which I have defined locally. It should not run test cases from any crates in my dependency tree (as I assume that these are correct).Bug
As all functions are exposed from the library crate I'm importing, nargo sees these test functions and runs them as part of my test suite as if I wrote them myself.
To reproduce
circuits
main.nr
to see no test functionsnargo test
and see output from tests inlib
directory.Environment
Using
nargo
:Using TypeScript:
Additional context
The text was updated successfully, but these errors were encountered: