UNPKG

@o3r/testing

Version:

The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.

12 lines 445 B
import type { SchematicOptionObject } from '@o3r/schematics'; export interface NgAddSchematicsSchema extends SchematicOptionObject { /** Project name */ projectName?: string | undefined; /** Testing framework */ testingFramework?: 'jest' | 'other'; /** Enable playwright */ enablePlaywright: boolean; /** Use a pinned version for otter packages */ exactO3rVersion?: boolean; } //# sourceMappingURL=schema.d.ts.map