backsplash-app
Version:
An AI powered wallpaper app.
18 lines (17 loc) • 409 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
roots: ["<rootDir>/src"],
testMatch: ["**/__tests__/**/*.ts", "**/?(*.)+(spec|test).ts"],
transform: {
"^.+\\.ts$": [
"ts-jest",
{
tsconfig: "tsconfig.json",
},
],
},
moduleFileExtensions: ["ts", "js", "json", "node"],
testTimeout: 10000,
};