From dcc93a90d905df4139d22ad610d75d02ce3cc4f9 Mon Sep 17 00:00:00 2001 From: Taylor Romero Date: Mon, 27 Jan 2025 10:16:31 -0700 Subject: [PATCH] patch: links --- src/pages/concepts/spruce-cli.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pages/concepts/spruce-cli.md b/src/pages/concepts/spruce-cli.md index 7d6f4f0..a6b3abb 100644 --- a/src/pages/concepts/spruce-cli.md +++ b/src/pages/concepts/spruce-cli.md @@ -29,11 +29,10 @@ * **Easily Extend Test Classes**: Create a parent test class to hold helpful assertions, setup methods, fixtures, etc. 2. **Decorator Based**: - * Use `@test()` to define which Class methods are tests. - * **Parameterized Tests**: Use the `@test()` decorator with arguments to run the same test with different input. + * Use [`@test()`](/concepts/tests/) to define which Class methods are tests. + * **Parameterized Tests**: Use the [`@test()`](/concepts/tests/) decorator with arguments to run the same test with different input. 4. **Tight VSCode Integration**: * **Formatting**: Beatuifully format your code on every Save. - * **Test Explorer**: View and run tests from the sidebar. * **Debugging**: Debug tests with breakpoints. 6. **Build Watcher**: Automatically build your code on every save.