UNPKG

@nx/playwright

Version:

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

17 lines 631 B
import { GeneratorCallback, Tree } from '@nx/devkit'; import { Linter, LinterType } from '@nx/eslint'; export interface PlaywrightLinterOptions { project: string; linter: Linter | LinterType; setParserOptionsProject: boolean; skipPackageJson: boolean; rootProject: boolean; js?: boolean; /** * Directory from the project root, where the playwright files will be located. **/ directory: string; addPlugin?: boolean; } export declare function addLinterToPlaywrightProject(tree: Tree, options: PlaywrightLinterOptions): Promise<GeneratorCallback>; //# sourceMappingURL=add-linter.d.ts.map