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