From 5bdd360cf2a2c56fba78b0ab3dcbd1ac8d74632b Mon Sep 17 00:00:00 2001 From: AztecBot Date: Tue, 27 Aug 2024 08:55:30 +0200 Subject: [PATCH] remove unecessary cds --- .../advanced/token_bridge/4_typescript_glue_code.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/4_typescript_glue_code.md b/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/4_typescript_glue_code.md index 674be65f37d..3a349ae6d26 100644 --- a/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/4_typescript_glue_code.md +++ b/docs/docs/tutorials/codealong/contract_tutorials/advanced/token_bridge/4_typescript_glue_code.md @@ -9,8 +9,7 @@ In this step we will write a Typescript test to interact with the sandbox and ca We need some helper files that can keep our code clean. Inside your `src/test` directory: ```bash -cd fixtures -cd .. && mkdir shared && cd shared +mkdir shared && cd shared touch cross_chain_test_harness.ts ```