mirror of
https://github.com/dd060606/WebAurion-API.git
synced 2026-01-18 16:47:26 +01:00
13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
import type { Config } from "jest";
|
|
import dotenv from "dotenv";
|
|
import path from "path";
|
|
|
|
dotenv.config({ path: path.resolve(__dirname, "./.env") });
|
|
const config: Config = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
testMatch: ["**/tests/**/*.test.ts"],
|
|
};
|
|
|
|
export default config;
|