aboutsummaryrefslogtreecommitdiffhomepage
path: root/jest.config.cjs
blob: ae5eba3f97f4495a9a95855e8ac86708c4dd150a (plain)
1
2
3
4
5
6
7
8
9
module.exports = {
    "roots": [
        "test"
    ],
    "transform": {
        "^.+\\.ts$": "ts-jest"
    },
    "reporters": ["github-actions"]
};