mirror of
https://github.com/netlight/my-finance-pal-backend.git
synced 2024-11-12 17:44:15 +01:00
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
|
import baseConfig from "./jest.config"
|
||
|
import { type Config } from "jest";
|
||
|
|
||
|
const config: Config = {
|
||
|
...baseConfig,
|
||
|
testRegex: ".*\\.integration\\.spec\\.ts$",
|
||
|
}
|
||
|
|
||
|
export default config;
|