From e9bee421135da3e7903f9532bb5d93d1fdfe814d Mon Sep 17 00:00:00 2001 From: gianalarcon Date: Fri, 19 Apr 2024 14:17:50 +0700 Subject: [PATCH] Improve foundry-forge --- src/ch02-13-foundry-forge.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch02-13-foundry-forge.md b/src/ch02-13-foundry-forge.md index 7cf0d20f..dd7a8d53 100644 --- a/src/ch02-13-foundry-forge.md +++ b/src/ch02-13-foundry-forge.md @@ -1,6 +1,6 @@ # Foundry Forge: Testing -Merely deploying contracts is not the end game. Many tools have offered this capability in the past. Forge sets itself apart by hosting a Cairo VM instance, enabling the sequential execution of tests. It employs Scarb for contract compilation. +Merely deploying contracts is not the end game. Many tools have offered this capability in the past. `Forge` sets itself apart by hosting a Cairo VM instance, enabling the sequential execution of tests. It employs Scarb for contract compilation. To utilize Forge, define test functions and label them with test attributes. Users can either test standalone Cairo functions or integrate contracts, dispatchers, and test contract interactions on-chain.