# jest-swc-config

This package includes the shareable Jest configuration to be used by Orchard projects.

## How to use

Install package and SWC dependencies:

```shell
yarn add -D jest @swc/core @swc/jest @theorchard/jest-swc-config
```

Modify your package.json to contain the following parts:

```json
{
    ...

    "scripts":{
        ...

        "test:unit": "jest"
    },
    "jest": {
        "preset": "@theorchard/jest-swc-config"
    }
}
```
