UNPKG

@elsikora/setup-wizard

Version:

Setup Wizard - CLI scaffolding utility

30 lines 941 B
import { ETestingFramework } from "../../../domain/enum/testing-framework.enum"; interface ITestingScripts { testAll: { command: () => string; name: string; }; testE2e: { command: (framework: ETestingFramework, configFile: string) => string; name: string; }; testE2eWatch: { command: (framework: ETestingFramework, configFile: string) => string; name: string; }; testUnit: { command: (framework: ETestingFramework, configFile: string) => string; name: string; }; testUnitCoverage: { command: (framework: ETestingFramework, configFile: string) => string; name: string; }; testUnitWatch: { command: (framework: ETestingFramework, configFile: string) => string; name: string; }; } export declare const TESTING_CONFIG_SCRIPTS: ITestingScripts; export {}; //# sourceMappingURL=scripts.constant.d.ts.map