Move unit test runner to standard library (#8850)

Move test runner to standard library.
Originated from #8819 

# After Submitting

I'll update the documentation about testing:
http://www.nushell.sh/book/testing.html

---------

Co-authored-by: Mate Farkas <Mate.Farkas@oneidentity.com>
This commit is contained in:
Máté FARKAS
2023-04-13 21:46:37 +02:00
committed by GitHub
parent b4400c4896
commit b2d7427d2d
9 changed files with 394 additions and 389 deletions

View File

@ -31,7 +31,7 @@ use std
### :test_tube: run the tests
the following call should return no errors
```bash
NU_LOG_LEVEL=DEBUG cargo run -- crates/nu-std/tests.nu
NU_LOG_LEVEL=DEBUG cargo run -- -c "use std; std run-tests --path crates/nu-std"
```
> **Warning**