Skip to main content
Version: 9.0.0

Source

This configuration options allows you to specify the test feature files that you want to run. It revolves around the location and name of your files. Hence, as long as you give a right path and that the feature file(s) you want to run follows the Test Maker feature file convention you can execute a selected/filtered set of files.

Options

NameTypeDescription
sourcestring[] / Source[]You can choose the test(s) that will be executed, with either glob or relative path to the feature files.

Source[]

NameTypeDescription
clientsstring[]
namestring[]
pathstring[]

Basic Usage

export const local: Configuration = {
source: [`
./src/specs/myFeatureFile-spec.ts,
./src/testFolder/**/*-myConvention.ts
`],
}