Go to repository

Interface TaskJestOptions

This type represents the options that you can pass to the jest task.

interface TaskJestOptions {
    coverage: boolean;
    noThreshold: boolean;
    watch: boolean;
}

Properties

coverage: boolean

Whether to use coverage configurations to run the tests. Defaults to true.

noThreshold: boolean

Whether to disable the default thresholds for coverage. Defaults to false.

watch: boolean

Whether you want to watch for changes. Defaults to false.