UNPKG

@nx/detox

Version:

The Nx Plugin for Detox contains executors and generators for allowing your workspace to use the powerful Detox integration testing capabilities.

11 lines (10 loc) 392 B
import { CreateNodes, CreateNodesV2 } from '@nx/devkit'; export interface DetoxPluginOptions { buildTargetName?: string; startTargetName?: string; testTargetName?: string; buildDepsTargetName?: string; watchDepsTargetName?: string; } export declare const createNodesV2: CreateNodesV2<DetoxPluginOptions>; export declare const createNodes: CreateNodes<DetoxPluginOptions>;