Skip to content

Commit f19d64f

Browse files
updated deprecated docs with replacement links (#109)
1 parent 4594eda commit f19d64f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

versioned_docs/version-2x/Guides/vscode.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,7 @@ This extension contributes the following settings:
3232
"node_modules/@qavajs/**/src/*.ts",
3333
"step_definition/*.ts"
3434
],
35-
"qavajs.templates": [
36-
"templates/*.feature"
37-
],
38-
"qavajs.launchCommand": "npx qavajs run --config config.ts",
35+
"qavajs.launchCommand": "npx qavajs run --config config.ts"
3936
}
4037
```
4138

versioned_docs/version-2x/Guides/webstorm.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ sidebar_position: 30
55
qavajs can be integrated with Webstorm using built-in cucumberjs plugin.
66
First, install webstorm-adapter package
77

8-
`npm install @qavajs/webstorm-adapter`
8+
```
9+
npm install @qavajs/webstorm-adapter
10+
```
911

1012
Then create new run configuration template and repoint cucumberjs package to @qavajs/webstorm-adapter.
1113
Optionally, set additional qavajs arguments (like config, profile, etc)

versioned_docs/version-2x/Modules/soft-assertion.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ sidebar_position: 2
66

77
:::warning
88

9-
@qavajs/soft-assertion is discouraged.
10-
Soft assertion functionality is now included into `@qavajs/core` module
11-
Please use built-in `softly` prefix
9+
`@qavajs/soft-assertion` is discouraged.
10+
Soft assertion functionality is now included into `@qavajs/core` module.
11+
Please use built-in [softly](../intro.md#soft-validation) prefix
1212

1313
:::
1414

versioned_docs/version-2x/Modules/template.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ sidebar_position: 1
66

77
:::warning
88

9-
@qavajs/template is discouraged. Please use built-in `this.executeStep`
9+
`@qavajs/template` is discouraged.
10+
Please use built-in [this.executeStep](../intro.md#execute-steps-from-other-steps) and/or [Template](../intro.md#template)
1011

1112
:::
1213

versioned_docs/version-2x/Steps/gmail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ npm install @qavajs/steps-gmail
1111
```
1212

1313
## Configuration
14-
```javascript
14+
```typescript
1515
export default {
1616
require: [
1717
'node_modules/@qavajs/steps-gmail/index.js'

0 commit comments

Comments
 (0)