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