The test file link in the README.md of the recursion folder within the noir-examples repository was incorrect, pointing to a non-existing path. This made it difficult for users to locate and run the test file as instructed.
Summary*
This Pull Request updates the README.md file in the recursion folder to correct the path to the test file. The link has been updated from ./test/index.ts to ./packages/hardhat/test/index.test.ts, reflecting the actual location of the test file within the repository structure.
Additional Context
This change makes sure that contributors and users can correctly access and run the test file as described in the README.md, improving the developer experience.
PR Checklist*
[x] I have tested the changes locally.
[x] I have formatted the changes with Prettier and/or cargo fmt on default settings.
Description
Problem*
The test file link in the
README.md
of therecursion
folder within thenoir-examples
repository was incorrect, pointing to a non-existing path. This made it difficult for users to locate and run the test file as instructed.Summary*
This Pull Request updates the
README.md
file in therecursion
folder to correct the path to the test file. The link has been updated from./test/index.ts
to./packages/hardhat/test/index.test.ts
, reflecting the actual location of the test file within the repository structure.Additional Context
This change makes sure that contributors and users can correctly access and run the test file as described in the
README.md
, improving the developer experience.PR Checklist*
cargo fmt
on default settings.