Open TetianaKhomenko opened 2 months ago
when changing the structure in code the old tests are kept in Testomat
this is the command used npx check-cucumber@latest "**/*.feature" --dir features/test --sync --keep-structure --no-detached
npx check-cucumber@latest "**/*.feature" --dir features/test --sync --keep-structure --no-detached
To reproduce:
have structure in code
features |__ a.feature
then sync npx check-cucumber@latest "**/*.feature" --dir features/test --sync --keep-structure --no-detached
then we move a.feature under a new folder
features |__ featuresA |____ a.feature
features |__a.feature |__ featuresA |____ a.feature
also --update-ids won't help much as it will insert not needed data in our features. So I think we need a sort of --overwrite or so, that will take always what's defined in definitions source code.
--update-ids
--overwrite
when changing the structure in code the old tests are kept in Testomat
this is the command used
npx check-cucumber@latest "**/*.feature" --dir features/test --sync --keep-structure --no-detached
To reproduce:
have structure in code
then sync
npx check-cucumber@latest "**/*.feature" --dir features/test --sync --keep-structure --no-detached
then we move a.feature under a new folder