# jest-config

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

## How to use

Modify your package.json to contain the following parts:

```json
{
    ...

    "scripts":{
        ...

        "test:unit": "jest"
    },
    "jest": {
        "preset": "@theorchard/jest-config"
    },
    "devDependencies": {
        ...

        "@theorchard/jest-config": "^1.0.0"
    }
}
```
