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
Name | Type | Description |
---|---|---|
source | string[] / Source[] | You can choose the test(s) that will be executed, with either glob or relative path to the feature files. |
Source[]
Name | Type | Description |
---|---|---|
clients | string[] | |
name | string[] | |
path | string[] |
Basic Usage
export const local: Configuration = {
source: [`
./src/specs/myFeatureFile-spec.ts,
./src/testFolder/**/*-myConvention.ts
`],
}