The tests/
directory serves as the designated location for system and end-to-end (E2E) tests.
The directory contains only placeholder subdirectories (system/
and e2e/
), each with a .gitkeep
file to maintain structure in the repository.
system/
directory is intended to house system tests which verify the integrated behavior of the application components working together in an environment simulating production.e2e/
directory is intended for end-to-end tests that simulate real user interactions with the complete application stack, ensuring workflows and interfaces function as expected.When evolving from boilerplate to a full-fledged project, these directories will be populated with relevant test suites and scripts.