From b935b0f8c8ce98554f7e3255e882f3ee5e6b6703 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Fri, 30 Jan 2026 16:06:49 +0500 Subject: [PATCH] docs: Add prerequisites section to testing tutorial --- .../testing-clarity-contracts.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/tutorials/bitcoin-primer/stacks-development-fundamentals/testing-clarity-contracts.md b/docs/tutorials/bitcoin-primer/stacks-development-fundamentals/testing-clarity-contracts.md index ac8ace7280..840a2e7065 100644 --- a/docs/tutorials/bitcoin-primer/stacks-development-fundamentals/testing-clarity-contracts.md +++ b/docs/tutorials/bitcoin-primer/stacks-development-fundamentals/testing-clarity-contracts.md @@ -1,5 +1,18 @@ # Testing Clarity Contracts +## Prerequisites + +Before starting this tutorial, you should have: + +- ✅ Basic understanding of TypeScript/JavaScript +- ✅ Clarinet installed and configured +- ✅ Completed the [Working with Clarity](./working-with-clarity.md) tutorial +- ✅ A Stacks project set up with Clarinet + +If you haven't set up Clarinet yet, see the [Clarinet guides](../../../build/clarinet/) in the Build section. + +## Overview + Now we need to modify our tests to make sure we handled this new message functionality. There are two sections of the docs to check to understand how to write Clarity unit tests.