diff --git a/src/dev/golang/testing.md b/src/dev/golang/testing.md index e42d7b5..c77b5e5 100644 --- a/src/dev/golang/testing.md +++ b/src/dev/golang/testing.md @@ -100,4 +100,10 @@ if testing.Short() { ```shell go test github.com/go/pkg/package --short -``` \ No newline at end of file +``` + +## Cleanup test cache + +```shell +go clean -testcache +``` diff --git a/src/dev/rust/testing.md b/src/dev/rust/testing.md index f67bc2f..a051617 100644 --- a/src/dev/rust/testing.md +++ b/src/dev/rust/testing.md @@ -13,9 +13,3 @@ cargo test -- --nocapture ```shell cargo test -- --no-fail-fast ``` - -## Cleanup test cache - -```shell -go clean -testcache -```