CRAP Complexity Coverage Location
6.00 2 0/6 (0.00%) command/compute-crap.command.ts (L21 - L39)
    public async run(
        inputs: string[],
        options: {
            json?: string | true;
            html?: string | true;
            verbosity?: LogLevel[];
        },
    ): Promise<void> {
        if (inputs.length === 0) {
            this.helpMessage();
        }

        this.processOptions(options);

        const testCoveragePath = inputs[0];
        const coverageReport = await this.fileSystemService.loadCoverageReport(testCoveragePath);

        await this.crapReportService.createReport({ testCoverage: coverageReport });
    }