7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
import { JestExecutorOptions } from '@nrwl/jest/src/executors/jest/schema';
|
|
|
|
export interface NxPluginE2EExecutorOptions extends JestExecutorOptions {
|
|
target: string;
|
|
jestConfig: string;
|
|
}
|