Skip to main content

Configuration

Update of the .gitignore

Edit the .gitignore file to add the following lines :

.gitignore
#@uuv
/uuv/reports
/uuv/.uuv-features-gen

IDE Plugins

IntelliJ

VS Code

For autocompletion while writing your tests, download the Cucumber plugin.
Then, create or edit the .vscode/settings.json file to add the following lines :

.vscode/settings.json
{
"cucumber.features": [
"uuv/e2e/**/*.feature"
],
"cucumber.glue": [
"uuv/cucumber/step_definitions/**/*.{js,ts}",
"node_modules/@uuv/*/src/cucumber/step_definitions/*/unsafe/**/*.ts",
"node_modules/@uuv/*/src/cucumber/step_definitions/*/generated/**/*.ts",
"node_modules/@uuv/*/src/cucumber/step_definitions/*/generated/enriched/*/*.ts"
]
}