diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-19 14:48:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-19 14:48:05 -0400 |
commit | 56ac638d93c96712d6c624e60dcfa4540d334b18 (patch) | |
tree | b3b5b985cc5be83545d8883207ee614f23627ef8 /website/manual.md | |
parent | 1b1ae65a4a2acd55ead86c17e388f10a0e08938d (diff) |
Remove test.py, use cargo test as test frontend (#2967)
Fixes #2933
Diffstat (limited to 'website/manual.md')
-rw-r--r-- | website/manual.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/website/manual.md b/website/manual.md index ae3f18d41..ead3dddac 100644 --- a/website/manual.md +++ b/website/manual.md @@ -167,7 +167,7 @@ cargo build -vv ./target/debug/deno tests/002_hello.ts # Test. -./tools/test.py +cargo test # Format code. ./tools/format.py @@ -1148,7 +1148,7 @@ Before submitting, please make sure the following is done: 1. That there is a related issue and it is referenced in the PR text. 2. There are tests that cover the changes. -3. Ensure `./tools/test.py` passes. +3. Ensure `cargo test` passes. 4. Format your code with `tools/format.py` 5. Make sure `./tools/lint.py` passes. |