From 56e29f89f74104b558c2bf103823a1b2ec54801b Mon Sep 17 00:00:00 2001 From: josh crites Date: Mon, 18 Mar 2024 11:23:53 +0000 Subject: [PATCH 1/2] Update cli-commands.md --- docs/docs/developers/sandbox/references/cli-commands.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/docs/developers/sandbox/references/cli-commands.md b/docs/docs/developers/sandbox/references/cli-commands.md index 3b74c795ebf5..7d3a14188366 100644 --- a/docs/docs/developers/sandbox/references/cli-commands.md +++ b/docs/docs/developers/sandbox/references/cli-commands.md @@ -5,7 +5,13 @@ title: CLI Commands import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -Here you will find a reference to the commands available in the Aztec CLI. +Here you will find an incomplete reference to the commands available in the Aztec CLI. + +:::info + +For a full up-to-date list, run `aztec-cli -h`. + +::: ## Installation From 424fa29140d0afb570600d057d1489ed7205eb59 Mon Sep 17 00:00:00 2001 From: josh crites Date: Mon, 18 Mar 2024 11:30:57 +0000 Subject: [PATCH 2/2] add test examples --- docs/docs/developers/contracts/testing_contracts/main.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/docs/developers/contracts/testing_contracts/main.md b/docs/docs/developers/contracts/testing_contracts/main.md index 39f54296b0ab..e0d217adbef9 100644 --- a/docs/docs/developers/contracts/testing_contracts/main.md +++ b/docs/docs/developers/contracts/testing_contracts/main.md @@ -6,4 +6,8 @@ We are currently working on a Foundry-like tool for writing unit tests in Noir. For now, it is easier to write e2e tests using [Aztec.js](../../aztecjs/main.md). -To make testing easier, the sandbox is shipped with cheat codes to easily test in different states. Read about them and find a list [here](../../sandbox/references/cheat_codes.md). \ No newline at end of file +To make testing easier, the sandbox is shipped with cheat codes to easily test in different states. Read about them and find a list [here](../../sandbox/references/cheat_codes.md). + +## Examples + +You can find example tests in the [aztec-starter](https://github.com/AztecProtocol/aztec-starter/tree/main) repo as well as the [Aztec Boxes](https://github.com/AztecProtocol/aztec-packages/tree/master/boxes).