import type { Config } from '@jest/types'; import { OdsGetJestConfig } from '@ovhcloud/ods-testing'; const args = process.argv.slice(2); /** * synchronous config for jest. * * example with async config : * ```typescript * export default async (): Promise => { * return { * verbose: true, * }; * }; * ``` */ const config: Config.InitialOptions = OdsGetJestConfig({ basePath: '/../../../..', args }); export default config;