···2222 cd test/javascript_prelude && make test
2323 cd test/project_erlang && cargo run clean && cargo run check && cargo run test
2424 cd test/project_javascript && cargo run clean && cargo run check && cargo run test
2525+ cd test/project_deno && cargo run clean && cargo run check && cargo run test
2526 cd test/hextarball && make test
2627 cd test/running_modules && make test
2728
···11+# Project
22+33+A test Gleam project.
44+55+It covers these features:
66+77+- Downloading packages
88+ - Specified in config.dependencies
99+- Importing packages
1010+ - Specified in config.dependencies
1111+- Compilation of Gleam code
1212+ - in src
1313+ - in test
1414+- Importing Gleam src code into test
1515+1616+These features are not tested yet
1717+1818+- Downloading packages
1919+ - Specified in config.dev-dependencies
2020+- Importing packages
2121+ - Specified in config.dev-dependencies
2222+- Compilation of locally defined JavaScript modules
2323+ - in src
2424+ - in test
2525+- Importing Gleam src code into test
2626+2727+## Quick start
2828+2929+```sh
3030+gleam run
3131+gleam test
3232+```