Excluding scenarios from synchronization
Excluding scenarios using tags
{
...
"local": {
"condition": "@done and not (@ignored or @planned)"
},
...
}Excluding scenarios by specifying feature files
{
...
"local": {
"sourceFiles": [
"Folder1/",
"Folder3/**/alpha*.feature"
]
},
...
}Last updated