7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
import type { Config } from 'jest';
|
|
import { getJestProjectsAsync } from '@nx/jest';
|
|
|
|
export default async (): Promise<Config> => ({
|
|
projects: await getJestProjectsAsync(),
|
|
});
|