Skip to content

Task does not flag completion to gulp when coverage is specified #9

Open
@Admiralfeb

Description

@Admiralfeb

I created a gulp task with the following:

function docs() {
    return src('src/**/*.ts').pipe(
        compodoc({
            output: 'docs',
            tsconfig: 'tsconfig.json',
        })
    );
}

exports.docs = docs;

gulp will complete the task with no issues.
However, if I add coverageTest: <percent> then the task runs, but gulp asks if the task had completed. It does not matter if the doc coverage passes or fails.

This is my current task:

function docs() {
    return src('src/**/*.ts').pipe(
        compodoc({
            output: 'docs',
            tsconfig: 'tsconfig.json',
            coverageTest: 70
        })
    );
}

exports.docs = docs;

versions:

  • @compodoc/compodoc 1.1.11
  • @compodoc/gulp-compodoc 0.0.10
  • gulp 4.0.2

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions