Skip to content

Commit

Permalink
Fix getting started
Browse files Browse the repository at this point in the history
  • Loading branch information
allevo committed May 9, 2024
1 parent e947ae3 commit 4064821
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/website/src/pages/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,10 @@ In this update, we changed the `Main` component as the following:
## How to test your application

Testing is an important part of the development process. It is a way to ensure that the application works as expected. In SeqFlow, testing is simple and easy. We use the `vitest` library to test the application.<br />
The project is already configured to use the `vitest` library. The configuration is in the `vitest.config.ts` file. You can run the tests using the `pnpm test` command.<br />

SeqFlow integrates `biome` as formatter. Before running the tests, you should fix all the formatting errors running `pnpm run biome:check` command.

The project is already configured to use the `vitest` library. The configuration is in the `vitest.config.ts` file. You can run the tests using the `pnpm test` command.

Due to the simple nature of the application, we will create a unique test. Create the `src/tests/index.test.ts` file with the following content:

Expand Down

0 comments on commit 4064821

Please sign in to comment.