Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing C# specs #93

Merged
merged 3 commits into from
Aug 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Default value:
"features/**/*.ts",
"features/**/*.py",
"src/test/**/*.java",
"*specs*/**/.cs"
"*specs*/**/*.cs"
]
}
```
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
]
},
"cucumber.glue": {
"markdownDescription": "The `cucumber.glue` setting overrides where the extension\nshould look for source code where step definitions and\nparameter types are defined.\n\nIf no glue files are found, [autocomplete](#autocomplete) \nwill not work, and all Gherkin steps will be underlined as \nundefined. [Generate step definition](#generate-step-definition)\nwill not work either.\n\nDefault value:\n\n```json\n{\n \"cucumber.glue\": [\n \"features/**/*.php\",\n \"features/**/*.rb\",\n \"features/**/*.ts\",\n \"features/**/*.py\",\n \"src/test/**/*.java\",\n \"*specs*/**/.cs\"\n ]\n}\n```",
"markdownDescription": "The `cucumber.glue` setting overrides where the extension\nshould look for source code where step definitions and\nparameter types are defined.\n\nIf no glue files are found, [autocomplete](#autocomplete) \nwill not work, and all Gherkin steps will be underlined as \nundefined. [Generate step definition](#generate-step-definition)\nwill not work either.\n\nDefault value:\n\n```json\n{\n \"cucumber.glue\": [\n \"features/**/*.php\",\n \"features/**/*.rb\",\n \"features/**/*.ts\",\n \"features/**/*.py\",\n \"src/test/**/*.java\",\n \"*specs*/**/*.cs\"\n ]\n}\n```",
"type": "array",
"required": false,
"default": [
Expand All @@ -62,7 +62,7 @@
"features/**/*.ts",
"features/**/*.py",
"src/test/**/*.java",
"*specs*/**/.cs"
"*specs*/**/*.cs"
]
},
"cucumber.parameterTypes": {
Expand Down