runtipi/jest.config.js
Nicolas Meienberger 71aaa7f03b Test app configs
2022-05-24 18:45:16 +02:00

8 lines
239 B
JavaScript

/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
testMatch: ["**/__tests__/**/*.test.ts"],
testPathIgnorePatterns: ["/node_modules/", "/packages/"],
};