This is an extension based on Cucumber official plugin and enables support of qavajs framework features.
- VSCode Test Explorer
This extension contributes the following settings:
cucumber.features: gherkin files paths (array)cucumber.glue: step definition file paths (array)qavajs.launchCommand: qavajs launch command (default:npx qavajs run) (string)
{
"files.associations": {
"*.feature": "cucumber"
},
"cucumber.features": [
"features/**/*.feature"
],
"cucumber.glue": [
"node_modules/@qavajs/**/src/*.ts",
"step_definition/*.ts"
],
"qavajs.launchCommand": "npx qavajs run --config config.ts",
}- typescript projects require installed
ts-node - @qavajs/core > 2
