From af60de297a8987ee2157ad17ffccce18db26093d Mon Sep 17 00:00:00 2001 From: Sebas <157399509+SebasGuaquetaRSK@users.noreply.github.com> Date: Thu, 10 Oct 2024 08:49:57 -0500 Subject: [PATCH] Update docs/02-developers/05-smart-contracts/05-foundry/test-smart-contracts.md Co-authored-by: Owanate Amachree --- .../05-smart-contracts/05-foundry/test-smart-contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-developers/05-smart-contracts/05-foundry/test-smart-contracts.md b/docs/02-developers/05-smart-contracts/05-foundry/test-smart-contracts.md index 21323c67..be3ee4c4 100644 --- a/docs/02-developers/05-smart-contracts/05-foundry/test-smart-contracts.md +++ b/docs/02-developers/05-smart-contracts/05-foundry/test-smart-contracts.md @@ -9,7 +9,7 @@ tags: [guides, developers, smart contracts, rsk, rootstock, foundry, dApps, ethe In this section, you'll set up a smart contract test and test it using `forge`. ### Step 1: Test Script -You will see a directory called `test` in the root of your project. This is where you will see/write your tests. The demo `counter.sol` comes with a test script `counter.t.sol`, which contains: +You will see a directory called `test` in the root of your project. This is where you can view/write your tests. The demo `counter.sol` comes with a test script `counter.t.sol`, which contains: ```solidity // SPDX-License-Identifier: UNLICENSED