> ## Documentation Index
> Fetch the complete documentation index at: https://docs.formizee.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Testing

> Safety in first place, obviously.

We use [vitest](https://vitest.dev/) for our unit and integration tests. You can run the tests with:

```bash theme={"system"}
pnpm install
pnpm test
```

## Integration Tests

`/apps/api` and `/apps/vault` is our core product and needs to be heavily tested. we use integration testing:

```bash theme={"system"}
pnpm test --filter api
pnpm test --filter vault
```

<Info>
  Integration tests require a running `API` or `Vault` either locally or in a deployed environment.
</Info>
