UNPKG

@nx/cypress

Version:

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

10 lines (9 loc) 383 B
import { ExecutorContext } from '@nx/devkit'; import { CypressExecutorOptions } from '../executors/cypress/cypress.impl'; export declare function startDevServer(opts: Omit<CypressExecutorOptions, 'cypressConfig'>, context: ExecutorContext): AsyncGenerator<{ baseUrl: any; portLockFilePath?: undefined; } | { baseUrl: any; portLockFilePath: string; }, void, unknown>;